diff options
| author | Arthur Rodrigues <arthurhdrodrigues@proton.me> | 2026-04-02 00:41:33 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-09 16:23:08 +0100 |
| commit | 5b249cfc95feec6a9870ca2e556c8bdc6815b64a (patch) | |
| tree | 6d2fd3b6245a9f30aa2aa262b27f51a51e3a8ccb /gnu | |
| parent | 063d306502980e877f56fa025955dd3a7a7280cb (diff) | |
gnu: Add go-github-com-google-deck.
* gnu/packages/golang-xyz.scm (go-github-com-google-deck): New variable.
Change-Id: Ic176bac81477ae09c9715798fb46cf901e1b2ed9
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -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 f1794b96dc..6f05035ed0 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -11615,6 +11615,33 @@ designed for simplicity, speed, safety, and portability. CEL's C-like equivalent expressions in C++, Go, Java, and TypeScript.") (license license:asl2.0))) +(define-public go-github-com-google-deck + (package + (name "go-github-com-google-deck") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/deck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ma03jp3hhra3iwbi22x5zyf3hwv164zjg27ysvgpwbfcww5pn2")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/google/deck")) + (native-inputs + (list go-github-com-google-go-cmp)) + (propagated-inputs + (list go-github-com-golang-glog)) + (home-page "https://github.com/google/deck") + (synopsis "Deck - Flexible Logging Framework for Go") + (description + "This package provides a Flexible Logging Framework for Go.") + (license license:asl2.0))) + (define-public go-github-com-google-gnostic-models (package (name "go-github-com-google-gnostic-models") |
