From 9b6226bcdad4b3575431cd940db5039ef9bac315 Mon Sep 17 00:00:00 2001 From: muradm Date: Mon, 20 Jun 2022 07:22:37 +0300 Subject: gnu: Add go-github-com-gorilla-websocket 1.5.0. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/golang.scm (go-github-com-gorilla-websocket): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'gnu/packages/golang.scm') diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 296f0b8b07..87a745e87f 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -34,6 +34,7 @@ ;;; Copyright © 2021 Philip McGrath ;;; Copyright © 2021 Lu Hui ;;; Copyright © 2022 Pier-Hugues Pellerin +;;; Copyright © 2022 muradm ;;; ;;; This file is part of GNU Guix. ;;; @@ -9843,3 +9844,24 @@ (define-public go-github-com-google-go-jsonnet production-ready implementation, compatible with the original Jsonnet C++ implementation.") (license license:asl2.0))) + +(define-public go-github-com-gorilla-websocket + (package + (name "go-github-com-gorilla-websocket") + (version "1.5.0") + (home-page "https://github.com/gorilla/websocket") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1xrr6snvs9g1nzxxg05w4i4pq6k1xjljl5mvavd838qc468n118i")))) + (build-system go-build-system) + (arguments + `(#:import-path "github.com/gorilla/websocket")) + (synopsis "Fast WebSocket implementation for Go") + (description "Gorilla WebSocket is a Go implementation of the WebSocket protocol.") + (license license:bsd-2))) -- cgit v1.2.3 From eed4494da7fbb952a019052466c7a8adcf62a1da Mon Sep 17 00:00:00 2001 From: muradm Date: Mon, 20 Jun 2022 07:22:38 +0300 Subject: gnu: Add go-github-com-sourcegraph-jsonrpc2 0.1.0. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/golang.scm (go-github-com-sourcegraph-jsonrpc2): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu/packages/golang.scm') diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 87a745e87f..5c930f2fbb 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -9865,3 +9865,29 @@ (define-public go-github-com-gorilla-websocket (synopsis "Fast WebSocket implementation for Go") (description "Gorilla WebSocket is a Go implementation of the WebSocket protocol.") (license license:bsd-2))) + +(define-public go-github-com-sourcegraph-jsonrpc2 + (package + (name "go-github-com-sourcegraph-jsonrpc2") + (version "0.1.0") + (home-page "https://github.com/sourcegraph/jsonrpc2") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dk0w32k96vxrwnmm24wqx337dn8ylch65qwrbc3wh7whw2xx71q")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/sourcegraph/jsonrpc2")) + (propagated-inputs + (list + go-github-com-daviddengcn-go-colortext + go-github-com-motemen-go-colorine + go-github-com-gorilla-websocket)) + (synopsis "Provides a client and server implementation of JSON-RPC 2.0") + (description + "Package jsonrpc2 provides a Go implementation of JSON-RPC 2.0.") + (license license:expat))) -- cgit v1.2.3 From fca89918502d56e90ff1da1705edee9f25024d55 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 5 Jul 2022 13:36:54 -0400 Subject: gnu: Go: Update to 1.17.11. * gnu/packages/golang.scm (go-1.17): Update to 1.17.11. --- gnu/packages/golang.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/golang.scm') diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 5c930f2fbb..1ce55875d8 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -628,7 +628,7 @@ (define-public go-1.17 (package (inherit go-1.16) (name "go") - (version "1.17.9") + (version "1.17.11") (source (origin (method git-fetch) @@ -638,7 +638,7 @@ (define-public go-1.17 (file-name (git-file-name name version)) (sha256 (base32 - "02l6gxn738kam1niy2nl2wpsbzl4x87h2wik6hd3py19kq4z2flw")))) + "11wy6092qm7v0n10cjkyp49sbchqazi3vnij8k2sq7k7jaj63z5p")))) (outputs '("out" "tests")) ; 'tests' contains distribution tests. (arguments `(#:modules ((ice-9 match) -- cgit v1.2.3