From 2919b5ae315976032473a2e6ee9d49d57ab9f618 Mon Sep 17 00:00:00 2001 From: "Artyom V. Poptsov" Date: Sun, 8 Oct 2023 09:21:00 +0300 Subject: [PATCH] gnu: Deprecate the "go-ipfs" variable. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/ipfs.scm (go-ipfs): Rename to "kubo". (go-ipfs): Define as deprecated by "kubo". Signed-off-by: Ludovic Courtès --- gnu/packages/ipfs.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index ac12aea002..a1a77c55a9 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -219,9 +219,9 @@ (define-public gx-go written in Go.") (license license:expat))) -(define-public go-ipfs +(define-public kubo (package - (name "go-ipfs") + (name "kubo") (version "0.14.0") (source (origin @@ -368,3 +368,6 @@ (define-public go-ipfs interface as simple as the HTTP web, but with permanence built in. You can also mount the world at @code{/ipfs}.") (license license:expat))) + +(define-public go-ipfs + (deprecated-package "go-ipfs" kubo))