From ade02531ba422c31c931d72f5dc9bc413efbef70 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 5 Jan 2025 21:46:04 +0000 Subject: [PATCH] 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 --- gnu/packages/golang-crypto.scm | 25 +++++++++++++++++++++++++ gnu/packages/golang.scm | 23 ----------------------- 2 files changed, 25 insertions(+), 23 deletions(-) diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index fe4ed36e7a..d9cd2001ca 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -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") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 267681f551..cd77969c61 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -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