depot/third_party/nixpkgs/pkgs/development/tools/subxt/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

41 lines
928 B
Nix

{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, cmake
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "subxt";
version = "0.33.0";
src = fetchFromGitHub {
owner = "paritytech";
repo = "subxt";
rev = "v${version}";
hash = "sha256-ZTBWGNbCwe6GyGXk/8QBGLiAp4ZO7VZuJvtZicJsvgA=";
};
cargoHash = "sha256-FBtwmItzT5uFsKCx36POrYk5qDmlX9Nkx0E3hx17HqI=";
# 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.";
license = with licenses; [ gpl3Plus asl20 ];
maintainers = [ maintainers.FlorianFranzen ];
};
}