diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-12-28 01:07:58 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-04-12 18:42:22 +0200 |
commit | b18f45c21f5d697d384a7bd5c9d3ee314bba9e35 (patch) | |
tree | b9db10db65e6015461f44439c36659f6f7f61b99 /Makefile.am | |
parent | 2978832b9264b89325605fe2525bc3992d753135 (diff) | |
download | guix-b18f45c21f5d697d384a7bd5c9d3ee314bba9e35.tar.gz |
Add (guix ipfs).
This module allows for communicating with the IPFS gateway over the HTTP interface. The commit has been cherry-picked from <https://issues.guix.gnu.org/33899>. The procedures for adding and restoring file trees have been removed as according to a reply issue 33899, a different format will be used. The procedure 'add-data' has been exported as it will be used in the system test for IPFS. * guix/ipfs.scm: New file. * Makefile.am (MODULES): Add it. 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 1c2d45527c..17ad236655 100644 --- a/Makefile.am +++ b/Makefile.am @@ -126,6 +126,7 @@ MODULES = \ guix/cache.scm \ guix/cve.scm \ guix/workers.scm \ + guix/ipfs.scm \ guix/build-system.scm \ guix/build-system/android-ndk.scm \ guix/build-system/ant.scm \ |