3
0
Fork 0
forked from mirrors/nixpkgs

taro: init at 0.1.0-alpha

This commit is contained in:
Pavol Rusnak 2022-09-28 23:03:32 +02:00
parent 38bb31f819
commit 90791dc4e1
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D
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

@ -33078,6 +33078,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 { };