diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-12-05 19:22:08 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-07 07:55:53 +0000 |
| commit | 970a1f2d61566d50ccf28b7bee3078774bc536c7 (patch) | |
| tree | 9fb19851593ea86f5aa6facb70613d7e745e6323 /gnu | |
| parent | 080ce1854d9ad0d5dbd6f0268eb070c715adaa93 (diff) | |
gnu: Add go-github-com-sigstore-protobuf-specs.
* gnu/packages/golang-xyz.scm (go-github-com-sigstore-protobuf-specs): New variable.
Change-Id: Ic967777f931562cc26f44231eed4eecebcab8e8d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 78a5d35b64..f8c5898808 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -21474,6 +21474,42 @@ names.") (description "gopdf is a Go library for generating PDF documents.") (license license:expat))) +(define-public go-github-com-sigstore-protobuf-specs + (package + (name "go-github-com-sigstore-protobuf-specs") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sigstore/protobuf-specs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pvyy74kysnj3f0448aws25v6c9375kipi8q950z1bwwa8cdj9zj")))) + (build-system go-build-system) + (arguments + (list + #:skip-build? #t + #:import-path "github.com/sigstore/protobuf-specs" + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'remove-protoc-builder + ;; protoc-builder contains Dockerfile.go which isn't valid Go + (lambda* (#:key import-path #:allow-other-keys) + (delete-file-recursively + (string-append "src/" import-path "/protoc-builder"))))))) + (propagated-inputs + (list go-google-golang-org-genproto-googleapis-api + go-google-golang-org-protobuf)) + (home-page "https://github.com/sigstore/protobuf-specs") + (synopsis "Sigstore protobuf specifications") + (description + "This package contains the protobuf specifications for Sigstore +components including Rekor transparency log entries, Fulcio certificates, +and bundle formats.") + (license license:asl2.0))) + (define-public go-github-com-sirupsen-logrus (package (name "go-github-com-sirupsen-logrus") |
