Merge pull request #193397 from prusnak/taro

taro: init at 0.1.0-alpha
This commit is contained in:
Pavol Rusnak 2022-09-29 13:17:11 +02:00 committed by GitHub
commit 81aed76b98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "taro";
version = "0.1.0-alpha";
src = fetchFromGitHub {
owner = "lightninglabs";
repo = "taro";
rev = "v${version}";
sha256 = "sha256-0kEdGHi+R9Ns3cVgHSpK/GMVqi8xU/xV831ogV2ErYM=";
};
vendorSha256 = "sha256-huQZy62lx82lmuCQ7RQ+7SLMJIBYKfXbw+2ZkswPXxw=";
subPackages = [ "cmd/tarocli" "cmd/tarod" ];
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Daemon for the Taro protocol specification";
homepage = "https://github.com/lightninglabs/taro";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}

View file

@ -32996,6 +32996,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
taro = callPackage ../applications/blockchains/taro { };
terra-station = callPackage ../applications/blockchains/terra-station { };
tessera = callPackage ../applications/blockchains/tessera { };