1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 12:00:35 +02:00

gnu: go-github-com-jcmturner-goidentity-v6: Move to (gnu packages golang-web).

* gnu/packages/golang.scm (go-github-com-jcmturner-goidentity-v6): Move from
here...
* gnu/packages/golang-web.scm: ...to here.

Change-Id: Ibd9202efe7fc1002bc34376107a0e88872c888be
This commit is contained in:
Sharlatan Hellseher 2023-11-29 22:34:57 +00:00 committed by Maxim Cournoyer
parent db6f2a0f8a
commit c058e08d8b
No known key found for this signature in database
GPG key ID: 1260E46482E63562
2 changed files with 24 additions and 24 deletions

View file

@ -314,6 +314,30 @@ selection based on their relative weighting. This package is useful for
network applications that require accessing services using SRV records.") network applications that require accessing services using SRV records.")
(license license:asl2.0))) (license license:asl2.0)))
(define-public go-github-com-jcmturner-goidentity-v6
(package
(name "go-github-com-jcmturner-goidentity-v6")
(version "6.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jcmturner/goidentity")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "064ysvxvrvij843s7qj1nkzl5qc6j1qbrsb3s0zmwd1sa7vq8q1n"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/jcmturner/goidentity/v6"))
(propagated-inputs
(list go-github-com-stretchr-testify go-github-com-hashicorp-go-uuid))
(home-page "https://github.com/jcmturner/goidentity")
(synopsis "Hold authenticated identities and their attributes")
(description "This package provides a standard interface for holding
authenticated identities and their attributes.")
(license license:asl2.0)))
(define-public go-github-com-jcmturner-gokrb5-v8 (define-public go-github-com-jcmturner-gokrb5-v8
(package (package
(name "go-github-com-jcmturner-gokrb5-v8") (name "go-github-com-jcmturner-gokrb5-v8")

View file

@ -1499,30 +1499,6 @@ not included in the Go standard library.")
encryption and decryption methods.") encryption and decryption methods.")
(license license:asl2.0))) (license license:asl2.0)))
(define-public go-github-com-jcmturner-goidentity-v6
(package
(name "go-github-com-jcmturner-goidentity-v6")
(version "6.0.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jcmturner/goidentity")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"064ysvxvrvij843s7qj1nkzl5qc6j1qbrsb3s0zmwd1sa7vq8q1n"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/jcmturner/goidentity/v6"))
(propagated-inputs
(list go-github-com-stretchr-testify go-github-com-hashicorp-go-uuid))
(home-page "https://github.com/jcmturner/goidentity")
(synopsis "Hold authenticated identities and their attributes")
(description "This package provides a standard interface for holding
authenticated identities and their attributes.")
(license license:asl2.0)))
(define-public go-github-com-jcmturner-gofork (define-public go-github-com-jcmturner-gofork
(package (package
(name "go-github-com-jcmturner-gofork") (name "go-github-com-jcmturner-gofork")