summary refs log tree commit diff
path: root/pkgs/tools/misc/wagyu/default.nix
blob: d56d21b15166496e840d889c1caea5aa31e5067d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
  pname = "wagyu";
  version = "0.6.1";

  src = fetchFromGitHub {
    owner = "ArgusHQ";
    repo = pname;
    rev = "v${version}";
    sha256 = "1646j0lgg3hhznifvbkvr672p3yqlcavswijawaxq7n33ll8vmcn";
  };

  cargoSha256 = "10b96l0b32zxq0xrnhivv3gihmi5y31rllbizv67hrg1axz095vn";
  verifyCargoDeps = true;

  meta = with lib; {
    description = "Rust library for generating cryptocurrency wallets";
    homepage = https://github.com/ArgusHQ/wagyu;
    license = with licenses; [ mit asl20 ];
    maintainers = [ maintainers.offline ];
  };
}