mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: Add guile-eris.
* gnu/packages/guile-xyz.scm (guile-eris): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f53c100524
commit
208cb96067
1 changed files with 33 additions and 0 deletions
|
@ -4207,3 +4207,36 @@ (define-public guile-sodium
|
|||
tools.")
|
||||
(home-page "https://inqlab.net/git/guile-sodium.git")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public guile-eris
|
||||
(package
|
||||
(name "guile-eris")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://inqlab.net/git/eris.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256 (base32 "1ijglmwkdy1l87gj429qfjis0v8b1zlxhbyfhx5za8664h68nqka"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments '())
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("pkg-config" ,pkg-config)
|
||||
("texinfo" ,texinfo)
|
||||
;; test dependency
|
||||
("guile-srfi-180" ,guile-srfi-180)))
|
||||
(inputs `(("guile" ,guile-3.0)))
|
||||
(propagated-inputs
|
||||
`(("guile-sodium" ,guile-sodium)))
|
||||
(synopsis "Guile implementation of the Encoding for Robust Immutable Storage (ERIS)")
|
||||
(description
|
||||
"Guile-ERIS is the reference implementation of the Encoding for Robust
|
||||
Immutable Storage (ERIS). ERIS allows arbirtary content to be encoded into
|
||||
uniformly sized, encrypted blocks that can be reassembled using a short
|
||||
read-capability.")
|
||||
(home-page "https://inqlab.net/git/eris.git")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue