diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-07-01 23:28:21 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-07-01 23:28:21 +0200 |
commit | 72626a71a96b02fccb2281713c1fdcd09aa194c4 (patch) | |
tree | f24a4f73ee47d6478b5ef3a48ddb16e6403b7275 /Makefile.am | |
parent | 82323a80850a205866c83a9399cc76336e30847d (diff) | |
download | patches-72626a71a96b02fccb2281713c1fdcd09aa194c4.tar patches-72626a71a96b02fccb2281713c1fdcd09aa194c4.tar.gz |
Move `sha256' to (guix hash).
* guix/utils.scm (sha256): Move to...
* guix/hash.scm: ... here. New file.
* Makefile.am (MODULES): Add it.
* guix/derivations.scm, guix/scripts/download.scm,
guix/scripts/hash.scm, guix/scripts/refresh.scm, tests/base32.scm,
tests/derivations.scm, tests/store.scm: Use (guix hash).
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 418b63a377..2893ffb72b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -38,6 +38,7 @@ MODULES = \ guix/scripts/refresh.scm \ guix/base32.scm \ guix/records.scm \ + guix/hash.scm \ guix/utils.scm \ guix/serialization.scm \ guix/nar.scm \ |