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
653 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";
2022-09-28 12:57:47 +00:00
version = "1.0.4";
2018-08-30 21:06:50 +00:00
2022-09-28 12:57:47 +00:00
vendorSha256 = "sha256-krjTtH8C1SGhaKMCtsbA2S9ognImof6mwD+vJ/qbyrM=";
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}";
2022-09-28 12:57:47 +00:00
sha256 = "sha256-LdcCGUbrS6te03y8R7XJJOcG1j6uU0v8uEMeUHLeidg=";
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
};
}