diff options
author | Sarah Morgensen <iskarian@mgsn.dev> | 2022-01-05 14:07:47 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-01-06 16:27:30 +0100 |
commit | 064c367716f88b7662b6b8e0d9dbd5eab941c25f (patch) | |
tree | 0a5756bada17a56ab0b6bf985613cfd86d0bac4f /Makefile.am | |
parent | 0701efb351b36984d5ffd356e8de323e49603680 (diff) | |
download | guix-064c367716f88b7662b6b8e0d9dbd5eab941c25f.tar.gz |
guix hash: Extract file hashing procedures.
* guix/scripts/hash.scm (guix-hash)[vcs-file?] (nar-hash, default-hash): Extract hashing logic to... * guix/hash.scm (vcs-file?, file-hash*): ... these new procedures in this new file. Modified-by: Maxime Devos <maximedevos@telenet.be> Signed-off-by: Ludovic Courtès <ludo@gnu.org>
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 3f06ef8991..d6aabac261 100644 --- a/Makefile.am +++ b/Makefile.am @@ -100,6 +100,7 @@ MODULES = \ guix/extracting-download.scm \ guix/git-download.scm \ guix/hg-download.scm \ + guix/hash.scm \ guix/swh.scm \ guix/monads.scm \ guix/monad-repl.scm \ |