chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / applications / blockchains / taproot-assets / default.nix
blobd560d3b6db8019c5f0d846324171185f7cfc57ab
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
6 buildGoModule rec {
7   pname = "taproot-assets";
8   version = "0.4.1";
10   src = fetchFromGitHub {
11     owner = "lightninglabs";
12     repo = "taproot-assets";
13     rev = "v${version}";
14     hash = "sha256-aQYVPSDudLK4ZBcBN/wNjVoF/9inOaJRbcyTP6VMdA0=";
15   };
17   vendorHash = "sha256-IFzYW5vAtBoUC2ebFYnxS/TojQR4kXxQACNbyn2ZkCs=";
19   subPackages = [ "cmd/tapcli" "cmd/tapd" ];
21   ldflags = [ "-s" "-w" ];
23   meta = with lib; {
24     description = "Daemon for the Taro protocol specification";
25     homepage = "https://github.com/lightninglabs/taro";
26     license = licenses.mit;
27     maintainers = with maintainers; [ prusnak ];
28   };