2020-03-27 08:33:21 +01:00
|
|
|
{ stdenv, fetchFromGitHub, buildGoModule }:
|
2019-08-08 12:44:15 +02:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "tendermint";
|
2020-05-21 01:43:32 +02:00
|
|
|
version = "0.32.12";
|
2019-08-08 12:44:15 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tendermint";
|
|
|
|
repo = pname;
|
2019-09-16 23:34:10 +02:00
|
|
|
rev = "v${version}";
|
2020-05-21 01:43:32 +02:00
|
|
|
sha256 = "1d3q5d49pzh86brrwp4kfsxs0n9zdmcnkminarg3wl9w97qrjsr6";
|
2019-08-08 12:44:15 +02:00
|
|
|
};
|
|
|
|
|
2020-05-01 03:59:00 +02:00
|
|
|
vendorSha256 = "1vhd3s6yxfhirgipxcy0rh8sk55cdzirr8n8r31sijgyak92mq0l";
|
2019-08-08 12:44:15 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Byzantine-Fault Tolerant State Machines. Or Blockchain, for short.";
|
2020-04-12 05:15:13 +02:00
|
|
|
homepage = "https://tendermint.com/";
|
2019-08-08 12:44:15 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ alexfmpe ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
2020-05-01 03:59:00 +02:00
|
|
|
}
|