forked from mirrors/nixpkgs
taro: init at 0.1.0-alpha
This commit is contained in:
parent
38bb31f819
commit
90791dc4e1
29
pkgs/applications/blockchains/taro/default.nix
Normal file
29
pkgs/applications/blockchains/taro/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue