mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: go-github-com-xdg-go-pbkdf2: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-xdg-go-pbkdf2): Move from here ... * gnu/packages/golang-web.scm: ... to here. Change-Id: I3151905dcf2cdedc00c4d2f84b0e76f5b6a25d30
This commit is contained in:
parent
e28568d8cc
commit
ade02531ba
2 changed files with 25 additions and 23 deletions
|
@ -1836,6 +1836,31 @@ (define-public go-github-com-xanzy-ssh-agent
|
|||
ssh-agent process using the sample server.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-xdg-go-pbkdf2
|
||||
(package
|
||||
(name "go-github-com-xdg-go-pbkdf2")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/xdg-go/pbkdf2")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1nipijy5xkdnfyhkp5ryrjzm14si1i2v2xyfmblf84binwkbr8jh"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/xdg-go/pbkdf2"))
|
||||
(home-page "https://github.com/xdg-go/pbkdf2")
|
||||
(synopsis "Go implementation of PBKDF2")
|
||||
(description
|
||||
"Package pbkdf2 implements password-based key derivation using the PBKDF2
|
||||
algorithm described in @url{https://rfc-editor.org/rfc/rfc2898.html,RFC 2898}
|
||||
and @url{https://rfc-editor.org/rfc/rfc8018.html,RFC 8018}.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-youmark-pkcs8
|
||||
(package
|
||||
(name "go-github-com-youmark-pkcs8")
|
||||
|
|
|
@ -3910,29 +3910,6 @@ (define-public go-github-com-xdg-go-stringprep
|
|||
RFC-4013.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-xdg-go-pbkdf2
|
||||
(package
|
||||
(name "go-github-com-xdg-go-pbkdf2")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/xdg-go/pbkdf2")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1nipijy5xkdnfyhkp5ryrjzm14si1i2v2xyfmblf84binwkbr8jh"))))
|
||||
(build-system go-build-system)
|
||||
(arguments '(#:import-path "github.com/xdg-go/pbkdf2"))
|
||||
(home-page "https://github.com/xdg-go/pbkdf2")
|
||||
(synopsis "Go implementation of PBKDF2")
|
||||
(description
|
||||
"Package pbkdf2 implements password-based key derivation using the PBKDF2
|
||||
algorithm described in @url{https://rfc-editor.org/rfc/rfc2898.html,RFC 2898}
|
||||
and @url{https://rfc-editor.org/rfc/rfc8018.html,RFC 8018}.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-delthas-go-libnp
|
||||
(let ((commit "0e45ece1f878f202fee2c74801e287804668f677"))
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue