2022-02-16 19:53:57 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, fetchpatch }:
|
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";
|
2023-03-08 11:58:01 +00:00
|
|
|
version = "1.0.6";
|
2018-08-30 21:06:50 +00:00
|
|
|
|
2023-03-08 11:58:01 +00:00
|
|
|
vendorHash = "sha256-IRR10wC05dv4d170Iweuxdy/JEnYjvdW0h5nS1ht9cg=";
|
2020-08-04 00:26:27 +00:00
|
|
|
|
2018-08-30 21:06:50 +00:00
|
|
|
src = fetchFromGitHub {
|
2022-07-13 16:34:22 +00:00
|
|
|
owner = "ipfs-cluster";
|
2018-08-30 21:06:50 +00:00
|
|
|
repo = "ipfs-cluster";
|
2021-01-24 14:21:57 +00:00
|
|
|
rev = "v${version}";
|
2023-03-08 11:58:01 +00:00
|
|
|
hash = "sha256-2En7morOodWvtNZGAZhl1EZJCCHdrYSUA1WBYGkjnYI=";
|
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";
|
2022-07-13 16:34:22 +00:00
|
|
|
homepage = "https://ipfscluster.io";
|
2018-08-30 21:06:50 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2021-07-29 12:07:43 +00:00
|
|
|
maintainers = with maintainers; [ Luflosi jglukasik ];
|
2018-08-30 21:06:50 +00:00
|
|
|
};
|
2020-07-31 03:58:04 +00:00
|
|
|
}
|