depot/third_party/nixpkgs/pkgs/development/tools/subxt/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

42 lines
954 B
Nix

{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, cmake
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "subxt";
version = "0.36.0";
src = fetchFromGitHub {
owner = "paritytech";
repo = "subxt";
rev = "v${version}";
hash = "sha256-13zPRp5lzUkQEcNpME1M8VMON0mq7VMQ90WL24fzcaI=";
};
cargoHash = "sha256-7agdxuEVLZg1uTKyrtPnLdzMHlvdY41/w6QCDj7TC2E=";
# Only build the command line client
cargoBuildFlags = [ "--bin" "subxt" ];
# Needed by wabt-sys
nativeBuildInputs = [ cmake ];
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
# Requires a running substrate node
doCheck = false;
meta = with lib; {
homepage = "https://github.com/paritytech/subxt";
description = "Submit transactions to a substrate node via RPC";
mainProgram = "subxt";
license = with licenses; [ gpl3Plus asl20 ];
maintainers = [ maintainers.FlorianFranzen ];
};
}