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

26 lines
669 B
Nix
Raw Normal View History

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