mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 11:05:14 +00:00
tendermint: fix build on darwin
This commit is contained in:
parent
4340337ea5
commit
f729bd752f
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, buildGoModule }:
|
||||
{ stdenv, fetchFromGitHub, buildGoModule, Security }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "tendermint";
|
||||
@ -13,6 +13,8 @@ buildGoModule rec {
|
||||
|
||||
modSha256 = "1h51zgvjq3bm09yhm54rk8a86cqa1zma3mx6pb0kq7k72xvhpx0a";
|
||||
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Byzantine-Fault Tolerant State Machines. Or Blockchain, for short.";
|
||||
homepage = https://tendermint.com/;
|
||||
|
@ -22127,6 +22127,7 @@ in
|
||||
|
||||
tendermint = callPackage ../tools/networking/tendermint {
|
||||
buildGoModule = buildGo112Module;
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
termdown = (newScope pythonPackages) ../applications/misc/termdown { };
|
||||
|
Loading…
Reference in New Issue
Block a user