2020-03-27 00:33:21 -07:00
|
|
|
{ stdenv, fetchFromGitHub, buildGoModule }:
|
2019-08-08 03:44:15 -07:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "tendermint";
|
2020-06-08 20:01:24 -07:00
|
|
|
version = "0.33.5";
|
2019-08-08 03:44:15 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tendermint";
|
|
|
|
repo = pname;
|
2019-09-16 14:34:10 -07:00
|
|
|
rev = "v${version}";
|
2020-06-08 20:01:24 -07:00
|
|
|
sha256 = "0a6wm1gnr75mdfhzb9cgg4an655vln525slgp10r5abg9j3l8202";
|
2019-08-08 03:44:15 -07:00
|
|
|
};
|
|
|
|
|
2020-06-08 20:01:24 -07:00
|
|
|
vendorSha256 = "0i0n89lal99fqnzva51kp9f7wzqsfmncpshwxhq26kvykp7ji7sw";
|
2019-08-08 03:44:15 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Byzantine-Fault Tolerant State Machines. Or Blockchain, for short.";
|
2020-04-11 20:15:13 -07:00
|
|
|
homepage = "https://tendermint.com/";
|
2019-08-08 03:44:15 -07:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ alexfmpe ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
2020-04-30 18:59:00 -07:00
|
|
|
}
|