gnu: go-lukechampine-com-blake3: Move to (gnu packages golang-crypto).
* gnu/packages/golang.scm (go-lukechampine-com-blake3): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. * gnu/packages/uucp.scm: Add (gnu packages golang-crypto) to used modules. Change-Id: I56dba8380317a0f58f92140889611ac3075af2cfmaster
parent
fb63bfb9d5
commit
857be8fb47
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
|
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
|
||||||
;;; Copyright © 2019, 2020 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2019, 2020 Leo Famulari <leo@famulari.name>
|
||||||
|
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||||
;;; Copyright © 2022 (unmatched-parenthesis <paren@disroot.org>
|
;;; Copyright © 2022 (unmatched-parenthesis <paren@disroot.org>
|
||||||
;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr>
|
;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
|
@ -612,6 +613,31 @@ package is intended for interoperability with the standard library and the
|
||||||
possible.")
|
possible.")
|
||||||
(license license:bsd-3))))
|
(license license:bsd-3))))
|
||||||
|
|
||||||
|
(define-public go-lukechampine-com-blake3
|
||||||
|
(package
|
||||||
|
(name "go-lukechampine-com-blake3")
|
||||||
|
(version "1.1.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/lukechampine/blake3")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1yxdwp8dpnnq2wbwsxlkbq570i99sc6781y39czjxi9jh9z5nw55"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "lukechampine.com/blake3"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-klauspost-cpuid))
|
||||||
|
(home-page "https://pkg.go.dev/lukechampine.com/blake3")
|
||||||
|
(synopsis "Implementation of the BLAKE3 cryptographic hash function")
|
||||||
|
(description "@code{blake3} implements the BLAKE3 cryptographic hash
|
||||||
|
function. In addition to the pure-Go implementation, this package also
|
||||||
|
contains AVX-512 and AVX2 routines (generated by avo) that greatly increase
|
||||||
|
performance for large inputs and outputs.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
||||||
|
|
|
@ -10451,33 +10451,6 @@ friendly sizes. It converts boring ugly numbers to human-friendly strings and
|
||||||
back.")
|
back.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-lukechampine-com-blake3
|
|
||||||
(package
|
|
||||||
(name "go-lukechampine-com-blake3")
|
|
||||||
(version "1.1.5")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/lukechampine/blake3")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1yxdwp8dpnnq2wbwsxlkbq570i99sc6781y39czjxi9jh9z5nw55"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "lukechampine.com/blake3"))
|
|
||||||
(propagated-inputs
|
|
||||||
(list go-github-com-klauspost-cpuid))
|
|
||||||
(home-page "https://pkg.go.dev/lukechampine.com/blake3")
|
|
||||||
(synopsis "Implementation of the BLAKE3 cryptographic hash function")
|
|
||||||
(description "@code{blake3} implements the BLAKE3 cryptographic hash
|
|
||||||
function. In addition to the pure-Go implementation, this package also
|
|
||||||
contains AVX-512 and AVX2 routines (generated by avo) that greatly increase
|
|
||||||
performance for large inputs and outputs.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-golang-org-x-term
|
(define-public go-golang-org-x-term
|
||||||
(package
|
(package
|
||||||
(name "go-golang-org-x-term")
|
(name "go-golang-org-x-term")
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
(define-module (gnu packages uucp)
|
(define-module (gnu packages uucp)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
|
#:use-module (gnu packages golang-crypto)
|
||||||
#:use-module (gnu packages golang-web)
|
#:use-module (gnu packages golang-web)
|
||||||
#:use-module (gnu packages texinfo)
|
#:use-module (gnu packages texinfo)
|
||||||
#:use-module (guix licenses)
|
#:use-module (guix licenses)
|
||||||
|
|
Reference in New Issue