2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-08-30 21:06:50 +00:00
|
|
|
|
2019-11-05 22:32:32 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "ipfs-cluster";
|
2021-01-24 14:21:57 +00:00
|
|
|
version = "0.13.1";
|
2018-08-30 21:06:50 +00:00
|
|
|
|
2021-01-24 14:21:57 +00:00
|
|
|
vendorSha256 = "0ls6d5ijl8bbh48w0i30mwd4a4na93iw9xqpbw23lnb8pvskaggh";
|
2018-08-30 21:06:50 +00:00
|
|
|
|
2021-01-09 00:30:17 +00:00
|
|
|
patches = [
|
|
|
|
./test.patch
|
|
|
|
];
|
2020-08-04 00:26:27 +00:00
|
|
|
|
2018-08-30 21:06:50 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ipfs";
|
|
|
|
repo = "ipfs-cluster";
|
2021-01-24 14:21:57 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0kmsa7cnk88wrplsjysrpg6n0gd0risnhw0kh33jqx0fcg12b7h8";
|
2018-08-30 21:06:50 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-08-30 21:06:50 +00:00
|
|
|
description = "Allocate, replicate, and track Pins across a cluster of IPFS daemons";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://cluster.ipfs.io/";
|
2018-08-30 21:06:50 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ jglukasik ];
|
|
|
|
};
|
2020-07-31 03:58:04 +00:00
|
|
|
}
|