mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add go-github-com-aws-sdk.
* gnu/packages/golang.scm (go-github-com-aws-sdk): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
016501aec6
commit
9941036559
1 changed files with 29 additions and 0 deletions
|
@ -512,6 +512,35 @@ way of specifying command line options.")
|
||||||
(home-page "https://github.com/jessevdk/go-flags")
|
(home-page "https://github.com/jessevdk/go-flags")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-aws-sdk
|
||||||
|
(package
|
||||||
|
(name "go-github-com-aws-sdk")
|
||||||
|
(version "1.35.2")
|
||||||
|
(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
|
||||||
|
"1ky5lw2s2zpslnnqcs6hgsrwvwbxwgflb5jwf16dd4aga3vrg10c"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/aws/aws-sdk-go/aws"
|
||||||
|
#:unpack-path "github.com/aws/aws-sdk-go"))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("go-github-com-go-sql-driver-mysql" ,go-github-com-go-sql-driver-mysql)
|
||||||
|
("go-github-com-jmespath-go-jmespath" ,go-github-com-jmespath-go-jmespath)
|
||||||
|
("go-github-com-pkg-errors" ,go-github-com-pkg-errors)
|
||||||
|
("go-golang-org-x-net" ,go-golang-org-x-net)))
|
||||||
|
(home-page "https://github.com/aws/aws-sdk-go")
|
||||||
|
(synopsis "Library to access Amazon Web Services (AWS)")
|
||||||
|
(description
|
||||||
|
"This is the official AWS SDK for the Go programming language.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-gopkg.in-tomb.v2
|
(define-public go-gopkg.in-tomb.v2
|
||||||
(let ((commit "d5d1b5820637886def9eef33e03a27a9f166942c")
|
(let ((commit "d5d1b5820637886def9eef33e03a27a9f166942c")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue