diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-24 23:28:51 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-25 21:01:02 +0100 |
commit | b167bab9a1040fad0477c4bffc728e5b36837fd5 (patch) | |
tree | 61ee8b2bbbab2ec41056da96de26f271cbe87476 /gnu/packages/golang-crypto.scm | |
parent | da5d887f6fd9240f504f02bb42c10183b4d85ab2 (diff) | |
download | guix-b167bab9a1040fad0477c4bffc728e5b36837fd5.tar.gz guix-b167bab9a1040fad0477c4bffc728e5b36837fd5.zip |
gnu: go-github-com-cespare-xxhash: Rename variable.
* gnu/packages/golang-crypto.scm (go-github-com-cespare-xxhash):
Rename to go-github-com-cespare-xxhash-v2 to reflect go.mod import path.
* gnu/packages/golang-xyz.scm (go-github-com-coocood-freecache)
[propagated-inputs]: Remove go-github-com-cespare-xxhash, add
go-github-com-cespare-xxhash-v2.
* gnu/packages/networking.scm (nebula) [native-inputs]: Remove
go-github-com-cespare-xxhash, add go-github-com-cespare-xxhash-v2.
* gnu/packages/textutils.scm (csvdiff): Likewise.
Change-Id: I4d26cea51178d25962933ff6f19f0afafef61d6d
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index e89c486bcc..8783c19443 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -355,9 +355,9 @@ needing to use secp256k1 elliptic curve cryptography.") 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-v2 (package - (name "go-github-com-cespare-xxhash") + (name "go-github-com-cespare-xxhash-v2") (version "2.1.2") (source (origin @@ -373,7 +373,7 @@ the Ristretto prime-order group built from Edwards25519.") (build-system go-build-system) (arguments (list - #:import-path "github.com/cespare/xxhash" + #:import-path "github.com/cespare/xxhash/v2" #:phases #~(modify-phases %standard-phases (replace 'check |