2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-08-30 23:06:50 +02:00
|
|
|
|
2019-11-05 23:32:32 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "ipfs-cluster";
|
2022-01-09 17:57:18 +01:00
|
|
|
version = "0.14.4";
|
2018-08-30 23:06:50 +02:00
|
|
|
|
2022-01-09 17:57:18 +01:00
|
|
|
vendorSha256 = "sha256-4j6aPs17YNXyPIRr5NshAPYIfNM08GlYV13jnGtJzQc=";
|
2020-08-04 02:26:27 +02:00
|
|
|
|
2018-08-30 23:06:50 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ipfs";
|
|
|
|
repo = "ipfs-cluster";
|
2021-01-24 15:21:57 +01:00
|
|
|
rev = "v${version}";
|
2022-01-09 17:57:18 +01:00
|
|
|
sha256 = "sha256-82t3sHMKZiV6sYnW72N94qfRZ/aMkavj+hiAyg5viHQ=";
|
2018-08-30 23:06:50 +02:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-08-30 23:06:50 +02:00
|
|
|
description = "Allocate, replicate, and track Pins across a cluster of IPFS daemons";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://cluster.ipfs.io/";
|
2018-08-30 23:06:50 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2021-07-29 14:07:43 +02:00
|
|
|
maintainers = with maintainers; [ Luflosi jglukasik ];
|
2018-08-30 23:06:50 +02:00
|
|
|
};
|
2020-07-31 05:58:04 +02:00
|
|
|
}
|