[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
50/63: gnu: go-github-com-davecgh-go-xdr: Move to golang-web.
From: |
guix-commits |
Subject: |
50/63: gnu: go-github-com-davecgh-go-xdr: Move to golang-web. |
Date: |
Sat, 28 Dec 2024 11:13:44 -0500 (EST) |
sharlatan pushed a commit to branch go-team
in repository guix.
commit 46f84ab50a8994eed391380f62a9514af165d061
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Dec 28 15:28:12 2024 +0000
gnu: go-github-com-davecgh-go-xdr: Move to golang-web.
* gnu/packages/golang.scm (go-github-com-davecgh-go-xdr): Move from here ...
* gnu/packages/golang-web.scm: ... to here.
Change-Id: Ia49386d831382f20d49606621056166b8a935acc
---
gnu/packages/golang-web.scm | 27 +++++++++++++++++++++++++++
gnu/packages/golang.scm | 25 -------------------------
2 files changed, 27 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index a21f15366b..c6693a4e38 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -1363,6 +1363,33 @@ client in Golang.")
(modify-inputs (package-native-inputs go-github-com-datadog-datadog-go)
(append go-github-com-golang-mock)))))
+(define-public go-github-com-davecgh-go-xdr
+ (package
+ (name "go-github-com-davecgh-go-xdr")
+ (version "0.0.0-20161123171359-e6a2ba005892")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/davecgh/go-xdr")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0vifrz4iil4r7k8sz5iqlfbh80ysgs5abp2simgyhsbrkxrrsrrd"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/davecgh/go-xdr/xdr2"
+ #:unpack-path "github.com/davecgh/go-xdr"))
+ (home-page "https://github.com/davecgh/go-xdr")
+ (synopsis "Pure Go implementation of the XDR standard")
+ (description
+ "@code{go-xdr} implements the data representation portion of the External
+Data Representation (XDR) standard protocol as specified in RFC
+4506 (obsoletes RFC 1832 and RFC 1014) in pure Go.")
+ (license license:isc)))
+
(define-public go-github-com-elazarl-goproxy
(package
(name "go-github-com-elazarl-goproxy")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3166e7e1d0..614e194d6e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5007,31 +5007,6 @@ That is, @code{gofumpt} is happy with a subset of the
formats that
(native-inputs '())
(inputs '())))
-(define-public go-github-com-davecgh-go-xdr
- (package
- (name "go-github-com-davecgh-go-xdr")
- (version "0.0.0-20161123171359-e6a2ba005892")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/davecgh/go-xdr")
- (commit (go-version->git-ref version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0vifrz4iil4r7k8sz5iqlfbh80ysgs5abp2simgyhsbrkxrrsrrd"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "github.com/davecgh/go-xdr/xdr2"
- #:unpack-path "github.com/davecgh/go-xdr"))
- (home-page "https://github.com/davecgh/go-xdr")
- (synopsis "Pure Go implementation of the XDR standard")
- (description "@code{go-xdr} implements the data representation portion of
-the External Data Representation (XDR) standard protocol as specified in RFC
-4506 (obsoletes RFC 1832 and RFC 1014) in pure Go.")
- (license license:isc)))
-
(define-public go-gopkg-in-djherbis-times-v1
(package
(name "go-gopkg-in-djherbis-times-v1")
- 40/63: gnu: Add go-github-com-jmoiron-sqlx., (continued)
- 40/63: gnu: Add go-github-com-jmoiron-sqlx., guix-commits, 2024/12/28
- 53/63: gnu: go-github-com-gorhill-cronexpr: Update to 0.0.0-20180427100037-88b0669f7d75., guix-commits, 2024/12/28
- 63/63: gnu: go-github-com-masterminds-sprig-v3: Update to 3.3.0., guix-commits, 2024/12/28
- 46/63: gnu: go-github-com-tdewolff-hasher: Move to golang-xyz., guix-commits, 2024/12/28
- 06/63: gnu: Add go-github-com-safchain-ethtool., guix-commits, 2024/12/28
- 28/63: gnu: go-github-com-prometheus-common-assets: Update to 0.2.0., guix-commits, 2024/12/28
- 35/63: gnu: Add go-github-com-xo-dburl., guix-commits, 2024/12/28
- 36/63: gnu: go-github-com-pquerna-ffjson: Fix tests., guix-commits, 2024/12/28
- 41/63: gnu: Add go-github-com-tdewolff-argp., guix-commits, 2024/12/28
- 33/63: gnu: go-github-com-pierrec-lz4-v4: Fix build., guix-commits, 2024/12/28
- 50/63: gnu: go-github-com-davecgh-go-xdr: Move to golang-web.,
guix-commits <=
- 56/63: gnu: go-github-com-huandu-xstrings: Update to 1.5.0., guix-commits, 2024/12/28
- 62/63: gnu: go-github-com-mitchellh-go-wordwrap: Move to golang-xyz., guix-commits, 2024/12/28
- 10/63: gnu: go-github-com-dennwc-varint: Simplify., guix-commits, 2024/12/28
- 20/63: gnu: go-github-com-godbus-dbus: Simplify., guix-commits, 2024/12/28
- 31/63: gnu: Add go-github-com-karrick-golf., guix-commits, 2024/12/28
- 43/63: gnu: go-github-com-fsnotify-fsnotify: Update to 1.8.0., guix-commits, 2024/12/28
- 39/63: gnu: go-github-com-client9-misspell: Move to golang-xyz., guix-commits, 2024/12/28
- 48/63: gnu: miniflux: Update to 2.2.4., guix-commits, 2024/12/28
- 54/63: gnu: go-github-com-gorhill-cronexpr: Move to golang-xyz., guix-commits, 2024/12/28
- 45/63: gnu: go-github-com-tdewolff-minify-v2: Update to 2.21.2., guix-commits, 2024/12/28