2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-19 19:34:06 +00:00
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
647 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.0";
2018-08-30 21:06:50 +00:00
vendorSha256 = "sha256-b0k1V1+JikGemSQjyiKcH7cgyDEt0Nn5aVUf6nnE+/0=";
2018-08-30 21:06:50 +00:00
src = fetchFromGitHub {
owner = "ipfs";
repo = "ipfs-cluster";
rev = "v${version}";
sha256 = "sha256-vwu+Fj7PegbK9pmnsNuEl/AQz2gejRiFAAAov5+VNMQ=";
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; [ Luflosi jglukasik ];
2018-08-30 21:06:50 +00:00
};
}