mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-17 12:30:38 +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:
parent
5d64a46e94
commit
38f3dacb42
2 changed files with 49 additions and 49 deletions
|
@ -3110,6 +3110,55 @@ SPNEGO Kerberos authentication, as well as a HTTP handler wrapper decodes
|
||||||
Microsoft AD PAC authorization data.")
|
Microsoft AD PAC authorization data.")
|
||||||
(license license:asl2.0)))
|
(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
|
(define-public go-github-com-jhillyerd-enmime
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-jhillyerd-enmime")
|
(name "go-github-com-jhillyerd-enmime")
|
||||||
|
|
|
@ -1337,55 +1337,6 @@ networks where it would otherwise be blocked or heavily throttled.")
|
||||||
arounds until issues are addressed in the official distribution.")
|
arounds until issues are addressed in the official distribution.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(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-kataras-golog
|
(define-public go-github-com-kataras-golog
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-kataras-golog")
|
(name "go-github-com-kataras-golog")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue