mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-21 02:03:29 -05:00
gnu: Add go-github-com-aws-aws-sdk-go
* gnu/packages/golang.scm (go-github-com-aws-aws-sdk-go): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
66b87c5d98
commit
ef9d82d563
1 changed files with 25 additions and 0 deletions
|
@ -8991,3 +8991,28 @@ (define-public go-github-com-androiddnsfix
|
|||
(home-page "https://github.com/mtibben/androiddnsfix")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public go-github-com-aws-aws-sdk-go
|
||||
(package
|
||||
(name "go-github-com-aws-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
|
||||
(list 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)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue