diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-02 19:17:36 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:35 +0000 |
commit | 616e2b026cf9bceaac628a547f095ea39705e260 (patch) | |
tree | c25ce44ec1bbe4a85cbd3e46d416f6e7a18a7939 /gnu/packages/golang-web.scm | |
parent | 73ddd3a023af5d4767e8cae72247b3dac040949a (diff) |
gnu: Add go-github-com-nrdcg-goinwx.
* gnu/packages/golang-web.scm (go-github-com-nrdcg-goinwx): New variable.
Change-Id: I5ceb2c58bb3286c3a7e603fce0caef048a9e87bb
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 1d27e740f0..c5ee1f62c1 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -5363,6 +5363,35 @@ multistream-select protocol. The protocol is defined at 2616} HTTP/1.1 standard.") (license license:bsd-3))) +(define-public go-github-com-nrdcg-goinwx + (package + (name "go-github-com-nrdcg-goinwx") + (version "0.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nrdcg/goinwx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ld3spdi7q8cf4hf0wnbl7gyw2k8n4wp03fqncjx2gw2nsjng684")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/nrdcg/goinwx")) + (propagated-inputs + (list + go-github-com-fatih-structs + go-github-com-kolo-xmlrpc + go-github-com-mitchellh-mapstructure)) + (home-page "https://github.com/nrdcg/goinwx") + (synopsis "INWX Go API client") + (description + "This go library implements some parts of the official +@url{https://www.inwx.com/en/help/apidoc, INWX XML-RPC API}.") + (license license:expat))) + (define-public go-github-com-nwidger-jsoncolor (package (name "go-github-com-nwidger-jsoncolor") |