mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add minisign.
* gnu/packages/crypto.scm (minisign): New public variable. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
This commit is contained in:
parent
5fdf373701
commit
bfaa061718
1 changed files with 34 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
;;; Copyright © 2018 Nicolò Balzarotti <nicolo@nixo.xyz>
|
;;; Copyright © 2018 Nicolò Balzarotti <nicolo@nixo.xyz>
|
||||||
;;; Copyright © 2018 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
|
;;; Copyright © 2018 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
|
||||||
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
|
;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -974,3 +975,36 @@ (define-public hpenc
|
||||||
quickly by using all your CPU cores and hardware acceleration.")
|
quickly by using all your CPU cores and hardware acceleration.")
|
||||||
(home-page "https://github.com/vstakhov/hpenc")
|
(home-page "https://github.com/vstakhov/hpenc")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public minisign
|
||||||
|
(package
|
||||||
|
(name "minisign")
|
||||||
|
(version "0.8")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
(string-append "https://github.com/jedisct1/minisign/releases/download/"
|
||||||
|
version "/minisign-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"10hhgwxf9rcdlr00shrkcyxndrc22dh5lj8k5z27xg3nc0jba3hk"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
; No test suite
|
||||||
|
`(#:tests? #f))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("libsodium" ,libsodium)))
|
||||||
|
(home-page "https://jedisct1.github.io/minisign")
|
||||||
|
(synopsis "Tool to sign files and verify signatures")
|
||||||
|
(description
|
||||||
|
"Minisign is a dead simple tool to sign files and verify signatures. It is
|
||||||
|
portable, lightweight, and uses the highly secure Ed25519 public-key signature
|
||||||
|
system. Signature written by minisign can be verified using OpenBSD's
|
||||||
|
signify tool: public key files and signature files are compatible. However,
|
||||||
|
minisign uses a slightly different format to store secret keys. Minisign
|
||||||
|
signatures include trusted comments in addition to untrusted comments.
|
||||||
|
Trusted comments are signed, thus verified, before being displayed.")
|
||||||
|
(license license:isc)))
|
||||||
|
|
Loading…
Reference in a new issue