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

28 lines
719 B
Nix
Raw Normal View History

{ lib, stdenv, buildGoModule, fetchFromGitHub }:
2018-08-30 21:06:50 +00:00
2019-11-05 22:32:32 +00:00
buildGoModule rec {
pname = "ipfs-cluster";
version = "unstable-2020-10-20";
2018-08-30 21:06:50 +00:00
vendorSha256 = "0abfhl4v4yqy89aqn13ymj4rw5zhr92a9fh1abgpkr19adnyrs3d";
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 = "c78f7839a2d5645806e01bfbf7af862600f8fbc4";
sha256 = "0fschpysma2piy2bfas56yapxm2cl6nj986ww3sp7ysldjzadmkk";
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 ];
};
}