diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-10 09:47:44 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:06 +0100 |
commit | 483af6dee0003a121c8c955f03c23610e4a2c372 (patch) | |
tree | 8274f9319c1b3b3c643f22f5254f2f5a3e759ae2 /gnu/packages/golang-xyz.scm | |
parent | 873465c458cb3a6f2a9b037781a3faf7a166080b (diff) |
gnu: Add go-github-com-ostreedev-ostree-go.
* gnu/packages/golang-xyz.scm (go-github-com-ostreedev-ostree-go): New variable.
Change-Id: I275a0c2ca2072ea0f8550046930b8851cc09943a
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index d3a6bee9f5..d04f34b4c1 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -14732,6 +14732,33 @@ comparison library, to Go. Both a library and a command-line tool are included in this package.") (license license:expat))) +(define-public go-github-com-ostreedev-ostree-go + (package + (name "go-github-com-ostreedev-ostree-go") + (version "0.0.0-20210805093236-719684c64e4f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ostreedev/ostree-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "039pf8fdjlnma02m5ymj92m3j5w9pr950qkc7977lw2bjmw95g69")))) + (build-system go-build-system) + (arguments + (list + ;; The final command needs to include libostree and pkg-config packages. + #:skip-build? #t + #:tests? #f + #:import-path "github.com/ostreedev/ostree-go")) + (home-page "https://github.com/ostreedev/ostree-go") + (synopsis "Golang bindings for @code{libostree}") + (description + "This packae provides bindings for +@code{https://github.com/ostreedev/ostree, OSTree}.") + (license license:isc))) + (define-public go-github-com-otiai10-copy (package (name "go-github-com-otiai10-copy") |