nixpkgs/pkgs/applications/networking/ipfs-cluster/default.nix

26 lines
667 B
Nix
Raw Normal View History

2019-11-05 22:32:32 +00:00
{ stdenv, buildGoModule, fetchFromGitHub, fetchgx, gx-go }:
2018-08-30 21:06:50 +00:00
2019-11-05 22:32:32 +00:00
buildGoModule rec {
pname = "ipfs-cluster";
2019-11-05 22:32:32 +00:00
version = "0.11.0";
2018-08-30 21:06:50 +00:00
rev = "v${version}";
2019-11-05 22:32:32 +00:00
modSha256 = "03bqwg9nqh7w6j887gzxr2mcn14jc8f07z896b3swg5wzaz1i6hs";
2018-08-30 21:06:50 +00:00
src = fetchFromGitHub {
owner = "ipfs";
repo = "ipfs-cluster";
inherit rev;
2019-11-05 22:32:32 +00:00
sha256 = "0q5lanm2zdwwhdwv05fssb34y4y4dha3dq7x1iaabbf70lpqv6yx";
2018-08-30 21:06:50 +00:00
};
meta = with stdenv.lib; {
description = "Allocate, replicate, and track Pins across a cluster of IPFS daemons";
homepage = https://cluster.ipfs.io/;
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ jglukasik ];
};
}