diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-06 21:44:21 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:40 +0000 |
commit | 38e08f9d4f129882d3ef77db95570c0e2f9a448d (patch) | |
tree | 49fd415ae6955a2768c9e9d129549b319275c6ec /gnu/packages/golang-crypto.scm | |
parent | 3793af9bf876974a8ee7aa6e12332f2e71541f85 (diff) |
gnu: Add go-github-com-dgryski-dgoogauth.
* gnu/packages/golang-crypto.scm (go-github-com-dgryski-dgoogauth): New variable.
Change-Id: I029051004b2d573eefa5e8289c822e967b799b33
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index c36d2c0117..2f465280df 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -715,6 +715,31 @@ signature scheme specific to Decred) signatures. See the README.md files in the relevant sub packages for more details about those aspects.") (license license:isc))) +(define-public go-github-com-dgryski-dgoogauth + (package + (name "go-github-com-dgryski-dgoogauth") + (version "0.0.0-20190221195224-5a805980a5f3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgryski/dgoogauth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ma09ghwwizxaby37jmd9xjp6560p8lp29qqi8g4xw1d35h9nhny")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/dgryski/dgoogauth")) + (home-page "https://github.com/dgryski/dgoogauth") + (synopsis "Google Authenticator for Golang") + (description + "This is a Go implementation of the Google Authenticator library as +specified in @url{https://www.rfc-editor.org/rfc/rfc4226, RFC 4226} and +@url{https://www.rfc-editor.org/rfc/rfc6238, RFC 6238}.") + (license license:asl2.0))) + (define-public go-github-com-dgryski-go-farm (package (name "go-github-com-dgryski-go-farm") |