diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2023-04-23 14:27:33 +0200 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2023-04-23 11:04:17 -0400 |
commit | 34bd29182ea0fe12f5379403a549574df07aec39 (patch) | |
tree | 4fabe9bfd4164bb848d90d060b41f2e43152e518 | |
parent | 185b5b0c4672ff18bac30b09e33805c2121b6fe7 (diff) | |
download | guix-34bd29182ea0fe12f5379403a549574df07aec39.tar.gz |
gnu: Add go-github-com-jcmturner-rpc.
* gnu/packages/golang.scm (go-github-com-jcmturner-rpc): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/golang.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index c80b61ed47..a8b803f05d 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1505,6 +1505,39 @@ authenticated identities and their attributes.") arounds until issues are addressed in the official distribution.") (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-kataras-golog (package (name "go-github-com-kataras-golog") |