From b0b441ef303162ef0dc349dc43173f12c8347473 Mon Sep 17 00:00:00 2001 From: msglm Date: Fri, 6 Oct 2023 01:25:25 -0500 Subject: stashley now has ipfs-archive-manager support --- ipfs-archive-manager.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ipfs-archive-manager.scm (limited to 'ipfs-archive-manager.scm') diff --git a/ipfs-archive-manager.scm b/ipfs-archive-manager.scm new file mode 100644 index 0000000..4dec9aa --- /dev/null +++ b/ipfs-archive-manager.scm @@ -0,0 +1,34 @@ +(define-module (ipfs-archive-manager) + #:use-module (guix licenses) + #:use-module (guix packages) + #:use-module (guix build-system copy) + #:use-module (guix download) + #:use-module (guix git-download) + #:use-module (gnu packages ipfs) + ) + +(define-public ipfs-archive-manager + (package + (name "ipfs-archive-manager") + (version "1.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.techchud.xyz/ipfs-archive-manager") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1jkgl3ijv6qzzpkgl7bzk3d0dxr57zz97kfzapzxmzpc6xpc733c")))) + (build-system copy-build-system) + (inputs + (list + go-ipfs)) + (arguments + '(#:install-plan '(("ipfs-archive-manager" "/bin/ipfs-archive-manager")))) + (synopsis "tool that manages IPFS archives on your behalf") + (description + "A tool that manages IPFS archives on your behalf. + This updates your archive's IPNS name as well, for consistant updating.") + (home-page "https://git.techchud.xyz/ipfs-archive-manager/") + (license agpl3))) -- cgit v1.2.3