diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-07-02 22:38:03 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-07-02 22:38:03 +0200 |
commit | 69927e78de91b11d1fa93ffbf9a7cf915827b6e3 (patch) | |
tree | 41d5d43cf728fa799e989d6cd94e19f71192d34c /Makefile.am | |
parent | 72626a71a96b02fccb2281713c1fdcd09aa194c4 (diff) | |
download | guix-69927e78de91b11d1fa93ffbf9a7cf915827b6e3.tar guix-69927e78de91b11d1fa93ffbf9a7cf915827b6e3.tar.gz |
hash: Add `open-sha256-port'.
* guix/hash.scm (GCRY_MD_SHA256): New macro.
(sha256): Use it.
(open-sha256-md, md-write, md-read, md-close, open-sha256-port,
port-sha256): New procedures.
* tests/hash.scm: New file.
* Makefile.am (SCM_TESTS): Add it.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 2893ffb72b..9d872313e7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -84,6 +84,7 @@ nobase_nodist_guilemodule_DATA = $(GOBJECTS) guix/config.scm SCM_TESTS = \ tests/base32.scm \ + tests/hash.scm \ tests/builders.scm \ tests/derivations.scm \ tests/ui.scm \ |