diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-07 14:18:39 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:41 +0000 |
commit | 8a67b121b64c3457dfa693eee85a1d9cd65c4387 (patch) | |
tree | cd182d8b41358bec80299c7d1b24acb054fb10da /gnu/packages/golang-xyz.scm | |
parent | 2b5ba4766132c72ccfc9a99bf9014d9d87db72a3 (diff) |
gnu: Add go-google-golang-org-appengine.
* gnu/packages/golang-xyz.scm (go-google-golang-org-appengine): New variable.
Change-Id: Ieb682f8171487bc63bff7b110f78708d4636d3e4
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index a21e4efde4..67a87516fb 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -14060,6 +14060,40 @@ that handle none of the event types.") Go.") (license license:expat))) +(define-public go-google-golang-org-appengine + (package + (name "go-google-golang-org-appengine") + (version "1.6.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17pbiximrd340wdx3pm1jkpsgvss80pax7hif906xglh7mj9zqx2")) + (modules '((guix build utils))) + (snippet + #~(begin + ;; Submodules with their own go.mod files and packaged separately: + ;; + ;; - google.golang.org/appengine/v2 + (delete-file-recursively "v2"))))) + (build-system go-build-system) + (arguments + (list + #:import-path "google.golang.org/appengine")) + (propagated-inputs + (list go-github-com-golang-protobuf + go-golang-org-x-text + go-google-golang-org-protobuf)) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine.") + (license license:asl2.0))) + (define-public go-gopkg-in-alecthomas-kingpin-v2 (package (inherit go-github-com-alecthomas-kingpin) |