blob: e239483e4a616fffdad4fd769c0f67815fc389ec (
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{ 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 ];
};
}
|