mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
43 lines
955 B
Nix
43 lines
955 B
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "subxt";
|
|
version = "0.35.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "paritytech";
|
|
repo = "subxt";
|
|
rev = "v${version}";
|
|
hash = "sha256-5G5gFxr7CIvZ1RfkLIEF/z4t+wTj09fJXTNr2v0vuyg=";
|
|
};
|
|
|
|
cargoHash = "sha256-5lAs2J5hkPhBN3tORt6N7834brS/dAkKsXvZ6C1K+OY=";
|
|
|
|
# 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 ];
|
|
};
|
|
}
|