1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +02:00

gnu: go-github-com-jcmturner-rpc: Move to golang-web.

* gnu/packages/golang.scm (o-github-com-jcmturner-rpc,
go-github-com-jcmturner-rpc-v2-ndr,
go-github-com-jcmturner-rpc-v2-mstypes): Move from here ...
* gnu/packages/golang-web.scm: ... to here.

Change-Id: I51716d4069aa3e211406afbbfabf307cd3b9e0a7
This commit is contained in:
Sharlatan Hellseher 2024-12-19 09:23:52 +00:00
parent 5d64a46e94
commit 38f3dacb42
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 49 additions and 49 deletions

View file

@ -3110,6 +3110,55 @@ SPNEGO Kerberos authentication, as well as a HTTP handler wrapper decodes
Microsoft AD PAC authorization data.")
(license license:asl2.0)))
(define-public go-github-com-jcmturner-rpc
(package
(name "go-github-com-jcmturner-rpc")
(version "2.0.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jcmturner/rpc")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1nm4j2nwcszghldw39rwdx2hr56i1lybfpv33y4gd67w6qcqbpsi"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/jcmturner/rpc"
;; Source-only package.
#:tests? #f
#:phases
(modify-phases %standard-phases
;; Source-only package.
(delete 'build))))
(propagated-inputs
(list go-golang-org-x-net go-github-com-stretchr-testify))
(home-page "https://github.com/jcmturner/rpc")
(synopsis "Remote Procedure Call libraries")
(description
"This package provides a partial Go implementation of the Remote Call
Procedure libraries, presented in
@@url{http://pubs.opengroup.org/onlinepubs/9629399/,CDE 1.1: Remote Procedure
Call}.")
(license license:asl2.0)))
(define-public go-github-com-jcmturner-rpc-v2-ndr
(package
(inherit go-github-com-jcmturner-rpc)
(name "go-github-com-jcmturner-rpc-v2-ndr")
(arguments
`(#:import-path "github.com/jcmturner/rpc/v2/ndr"
#:unpack-path "github.com/jcmturner/rpc"))))
(define-public go-github-com-jcmturner-rpc-v2-mstypes
(package
(inherit go-github-com-jcmturner-rpc)
(name "go-github-com-jcmturner-rpc-v2-mstypes")
(arguments
`(#:import-path "github.com/jcmturner/rpc/v2/mstypes"
#:unpack-path "github.com/jcmturner/rpc"))))
(define-public go-github-com-jhillyerd-enmime
(package
(name "go-github-com-jhillyerd-enmime")