gnu: go-github-com-aws-sdk: Move to (gnu packages golang-web).

* gnu/packages/golang.scm (go-github-com-aws-sdk): Move from
here...
* gnu/packages/golang-web.scm: ...to here.

Change-Id: I8e82019c75b115548c2e0eea54b261ff8c3dd4a7
This commit is contained in:
Sharlatan Hellseher 2023-11-29 22:35:10 +00:00 committed by Maxim Cournoyer
parent cb523a9b6b
commit 157369092a
No known key found for this signature in database
GPG key ID: 1260E46482E63562
2 changed files with 28 additions and 28 deletions

View file

@ -71,6 +71,34 @@ (define-public go-github-com-andybalholm-cascadia
the parse trees produced by the html package.")
(license license:bsd-2)))
(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
(list go-github-com-go-sql-driver-mysql
go-github-com-jmespath-go-jmespath
go-github-com-pkg-errors
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-github-com-aymerick-douceur
(package
(name "go-github-com-aymerick-douceur")

View file

@ -3331,34 +3331,6 @@ (define-public go-github-com-hebcal-hebcal-go
and anniversaries.")
(license license:gpl2+))))
(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
(list go-github-com-go-sql-driver-mysql
go-github-com-jmespath-go-jmespath go-github-com-pkg-errors
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-github-com-go-jose-go-jose-v3
(package
(inherit go-gopkg-in-square-go-jose-v2)