guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#51989] [PATCH 04/12] gnu: Add go-aws-sdk-go


From: Collin J. Doering
Subject: [bug#51989] [PATCH 04/12] gnu: Add go-aws-sdk-go
Date: Fri, 19 Nov 2021 18:17:43 -0500
User-agent: mu4e 1.6.10; emacs 27.2

---
 gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 647e0c40cb..e9f90043d6 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8929,3 +8929,28 @@ (define-public go-github-com-percent
     (home-page "https://github.com/mtibben/percent";)
     (license license:expat)))
 
+(define-public go-github-com-aws-aws-sdk-go
+  (package
+    (name "go-aws-sdk-go")
+    (version "1.36.18")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/aws/aws-sdk-go";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "169mkkw1cff1px6326krwvfpfj07sb4y5rbn003gi4bk176h6ry9"))))
+    (build-system go-build-system)
+    (native-inputs
+     `(("go-github-com-jmespath-go-jmespath" 
,go-github-com-jmespath-go-jmespath)))
+    (arguments
+     '(#:import-path "github.com/aws/aws-sdk-go"
+       #:phases %standard-phases))
+    (synopsis "The official AWS SDK for the Go programming language")
+    (description
+     "The official AWS SDK for the Go programming language.")
+    (home-page "https://github.com/aws/aws-sdk-go";)
+    (license license:asl2.0)))
+
-- 
2.33.1


-- 
Collin J. Doering

http://rekahsoft.ca
http://blog.rekahsoft.ca
http://git.rekahsoft.ca





reply via email to

[Prev in Thread] Current Thread [Next in Thread]