depot/third_party/nixpkgs/pkgs/development/tools/subxt/default.nix
Default email 98eb3e9ef5 Project import generated by Copybara.
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
2024-07-01 15:47:52 +00:00

42 lines
954 B
Nix

{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, cmake
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "subxt";
version = "0.37.0";
src = fetchFromGitHub {
owner = "paritytech";
repo = "subxt";
rev = "v${version}";
hash = "sha256-GD4P+SXl9hyv0CxOximOMz+Gzi85kPahsiz0wHRqSWk=";
};
cargoHash = "sha256-luKtu9g+NtlwRhC1icpIxkBvP3GtggpKoj7Sx4anLAM=";
# 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 ];
};
}