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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
649 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, fetchpatch }:
2018-08-30 21:06:50 +00:00
2019-11-05 22:32:32 +00:00
buildGoModule rec {
pname = "ipfs-cluster";
version = "1.0.6";
2018-08-30 21:06:50 +00:00
vendorHash = "sha256-IRR10wC05dv4d170Iweuxdy/JEnYjvdW0h5nS1ht9cg=";
2018-08-30 21:06:50 +00:00
src = fetchFromGitHub {
owner = "ipfs-cluster";
2018-08-30 21:06:50 +00:00
repo = "ipfs-cluster";
rev = "v${version}";
hash = "sha256-2En7morOodWvtNZGAZhl1EZJCCHdrYSUA1WBYGkjnYI=";
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://ipfscluster.io";
2018-08-30 21:06:50 +00:00
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ Luflosi jglukasik ];
2018-08-30 21:06:50 +00:00
};
}