diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-10 10:32:13 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:06 +0100 |
| commit | f49e832ceb8b1346ba542e8bd1242540069523db (patch) | |
| tree | 598c50af28acd8fb5570481579b0003d323e7834 | |
| parent | 26a63da7e1396c9e3e903eba8e700bf500ae8c32 (diff) | |
gnu: Add go-github-com-linbit-golinstor.
* gnu/packages/golang-web.scm (go-github-com-linbit-golinstor): New variable.
Change-Id: I5c12340d4a76fd0ea3029b4a72671d3b16ddfb07
| -rw-r--r-- | gnu/packages/golang-web.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index feab57d9c08..bfea07a115f 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -5727,6 +5727,41 @@ It is inspired by SPDY but is not interoperable with it.") intends to be compatible with Avahi.") (license license:expat))) +(define-public go-github-com-linbit-golinstor + (package + (name "go-github-com-linbit-golinstor") + (version "0.56.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/LINBIT/golinstor") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00aviasdygy6c4wmfpn7whbhryc3gf3dmcjnkzp6w933izyvydw8")))) + (build-system go-build-system) + (arguments + (list + #:go go-1.24 + #:import-path "github.com/LINBIT/golinstor")) + (native-inputs + (list go-github-com-stretchr-testify)) + (propagated-inputs + (list go-github-com-burntsushi-toml + go-github-com-donovanhide-eventsource + go-github-com-google-go-querystring + go-github-com-sirupsen-logrus + go-golang-org-x-time + go-moul-io-http2curl-v2)) + (home-page "https://github.com/LINBIT/golinstor") + (synopsis "Golang bindings for @code{linstor}") + (description + "This package provides bindgings to Java +@url{https://github.com/LINBIT/linstor-server, Linstore} - Software-Defined +Block Storage for container, cloud and virtualisation.") + (license license:asl2.0))) + (define-public go-github-com-macronut-go-tproxy (package (name "go-github-com-macronut-go-tproxy") |
