mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-bwesterb-go-ristretto: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-bwesterb-go-ristretto): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. Change-Id: Ia028e4c5ccceaec3f0ceb828a147eff72cf6a20f
This commit is contained in:
parent
5b59c149e0
commit
6f05c96f96
2 changed files with 23 additions and 23 deletions
|
@ -261,6 +261,29 @@ been designed so it can be used as a standalone package for any projects
|
||||||
needing to use secp256k1 elliptic curve cryptography.")
|
needing to use secp256k1 elliptic curve cryptography.")
|
||||||
(license license:isc))))
|
(license license:isc))))
|
||||||
|
|
||||||
|
(define-public go-github-com-bwesterb-go-ristretto
|
||||||
|
(package
|
||||||
|
(name "go-github-com-bwesterb-go-ristretto")
|
||||||
|
(version "1.2.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/bwesterb/go-ristretto")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0h508v790wk6g8jq0gh18296xl87vmgc4fhwnac7mk6i5g3mz6v4"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:unpack-path "github.com/bwesterb/go-ristretto"
|
||||||
|
#:import-path "github.com/bwesterb/go-ristretto/edwards25519"))
|
||||||
|
(home-page "https://github.com/bwesterb/go-ristretto")
|
||||||
|
(synopsis "Operations on the Ristretto prime-order group")
|
||||||
|
(description "This is a pure Go implementation of the group operations on
|
||||||
|
the Ristretto prime-order group built from Edwards25519.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-cespare-xxhash
|
(define-public go-github-com-cespare-xxhash
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-cespare-xxhash")
|
(name "go-github-com-cespare-xxhash")
|
||||||
|
|
|
@ -8519,29 +8519,6 @@ configuration languages, but other uses may be possible too.")
|
||||||
(description "This package implements a low-level key/value store in Go.")
|
(description "This package implements a low-level key/value store in Go.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-bwesterb-go-ristretto
|
|
||||||
(package
|
|
||||||
(name "go-github-com-bwesterb-go-ristretto")
|
|
||||||
(version "1.2.3")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/bwesterb/go-ristretto")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0h508v790wk6g8jq0gh18296xl87vmgc4fhwnac7mk6i5g3mz6v4"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:unpack-path "github.com/bwesterb/go-ristretto"
|
|
||||||
#:import-path "github.com/bwesterb/go-ristretto/edwards25519"))
|
|
||||||
(home-page "https://github.com/bwesterb/go-ristretto")
|
|
||||||
(synopsis "operations on the Ristretto prime-order group")
|
|
||||||
(description "This is a pure Go implementation of the group operations on
|
|
||||||
the Ristretto prime-order group built from Edwards25519.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-github-com-rogpeppe-go-internal
|
(define-public go-github-com-rogpeppe-go-internal
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-rogpeppe-go-internal")
|
(name "go-github-com-rogpeppe-go-internal")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue