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

28 lines
669 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-08-30 21:06:50 +00:00
2019-11-05 22:32:32 +00:00
buildGoModule rec {
pname = "ipfs-cluster";
version = "0.13.1";
2018-08-30 21:06:50 +00:00
vendorSha256 = "0ls6d5ijl8bbh48w0i30mwd4a4na93iw9xqpbw23lnb8pvskaggh";
2018-08-30 21:06:50 +00:00
patches = [
./test.patch
];
2018-08-30 21:06:50 +00:00
src = fetchFromGitHub {
owner = "ipfs";
repo = "ipfs-cluster";
rev = "v${version}";
sha256 = "0kmsa7cnk88wrplsjysrpg6n0gd0risnhw0kh33jqx0fcg12b7h8";
2018-08-30 21:06:50 +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";
homepage = "https://cluster.ipfs.io/";
2018-08-30 21:06:50 +00:00
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ jglukasik ];
};
}