gnu: go-filippo-io-edwards25519: Move to (gnu packages golang-crypto).
* gnu/packages/golang.scm (go-filippo-io-edwards25519): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. * gnu/packages/password-utils.scm: Add (gnu packages golang-crypto) to used modules. Change-Id: I11769b8b212bf4cbe98fe10181c0a2a479c599df
This commit is contained in:
parent
2dd97bd8c5
commit
f54ec8a59b
3 changed files with 25 additions and 23 deletions
gnu/packages
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||||
|
;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org>
|
;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -40,6 +41,29 @@
|
||||||
;;;
|
;;;
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
(define-public go-filippo-io-edwards25519
|
||||||
|
(package
|
||||||
|
(name "go-filippo-io-edwards25519")
|
||||||
|
(version "1.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/FiloSottile/edwards25519")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "01m8hpaj0cwp250f7b0din09cf8j6j5y631grx67qfhvfrmwr1zr"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "filippo.io/edwards25519"))
|
||||||
|
(home-page "https://filippo.io/edwards25519")
|
||||||
|
(synopsis "Group logic for the twisted Edwards curve")
|
||||||
|
(description "This package implements the edwards25519 elliptic curve in
|
||||||
|
Go, exposing the necessary APIs to build a wide array of higher-level
|
||||||
|
primitives.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-aead-chacha20
|
(define-public go-github-com-aead-chacha20
|
||||||
(let ((commit "8b13a72661dae6e9e5dea04f344f0dc95ea29547")
|
(let ((commit "8b13a72661dae6e9e5dea04f344f0dc95ea29547")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
|
@ -9814,29 +9814,6 @@ composability.")
|
||||||
#:unpack-path "filippo.io/age"
|
#:unpack-path "filippo.io/age"
|
||||||
#:install-source? #f))))
|
#:install-source? #f))))
|
||||||
|
|
||||||
(define-public go-filippo-io-edwards25519
|
|
||||||
(package
|
|
||||||
(name "go-filippo-io-edwards25519")
|
|
||||||
(version "1.0.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/FiloSottile/edwards25519")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "01m8hpaj0cwp250f7b0din09cf8j6j5y631grx67qfhvfrmwr1zr"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "filippo.io/edwards25519"))
|
|
||||||
(home-page "https://filippo.io/edwards25519")
|
|
||||||
(synopsis "Group logic for the twisted Edwards curve")
|
|
||||||
(description
|
|
||||||
"This package implements the edwards25519 elliptic curve in Go, exposing
|
|
||||||
the necessary APIs to build a wide array of higher-level primitives.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-gitlab-com-yawning-edwards25519-extra
|
(define-public go-gitlab-com-yawning-edwards25519-extra
|
||||||
(let ((commit "2149dcafc266f66d2487f45b156f6397f9c4760b")
|
(let ((commit "2149dcafc266f66d2487f45b156f6397f9c4760b")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
|
@ -91,6 +91,7 @@
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
|
#:use-module (gnu packages golang-crypto)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
#:use-module (gnu packages kerberos)
|
#:use-module (gnu packages kerberos)
|
||||||
|
|
Reference in a new issue