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
636 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-08-30 23:06:50 +02:00
2019-11-05 23:32:32 +01:00
buildGoModule rec {
pname = "ipfs-cluster";
version = "0.14.4";
2018-08-30 23:06:50 +02:00
vendorSha256 = "sha256-4j6aPs17YNXyPIRr5NshAPYIfNM08GlYV13jnGtJzQc=";
2018-08-30 23:06:50 +02:00
src = fetchFromGitHub {
owner = "ipfs";
repo = "ipfs-cluster";
rev = "v${version}";
sha256 = "sha256-82t3sHMKZiV6sYnW72N94qfRZ/aMkavj+hiAyg5viHQ=";
2018-08-30 23:06:50 +02:00
};
meta = with lib; {
2018-08-30 23:06:50 +02:00
description = "Allocate, replicate, and track Pins across a cluster of IPFS daemons";
homepage = "https://cluster.ipfs.io/";
2018-08-30 23:06:50 +02:00
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ Luflosi jglukasik ];
2018-08-30 23:06:50 +02:00
};
}