nixpkgs/pkgs/applications/blockchains/ethabi.nix

24 lines
616 B
Nix
Raw Normal View History

2016-08-17 21:38:41 +02:00
{ stdenv, fetchFromGitHub, rustPlatform }:
2020-02-15 22:12:41 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "ethabi";
2020-02-15 22:12:41 +01:00
version = "11.0.0";
2016-08-17 21:38:41 +02:00
src = fetchFromGitHub {
2017-04-11 05:39:03 +02:00
owner = "paritytech";
2016-08-17 21:38:41 +02:00
repo = "ethabi";
2018-03-02 14:19:29 +01:00
rev = "v${version}";
2019-04-10 11:48:30 +02:00
sha256 = "1gqd3vwsvv1wvi659qcdywgmh41swblpwmmxb033k8irw581dwq4";
2016-08-17 21:38:41 +02:00
};
2020-02-15 22:12:41 +01:00
cargoSha256 = "1hx8qw51rl7sn9jmnclw0hc4rx619hf78hpaih5mvny3k0zgiwpm";
2018-09-01 14:04:59 +02:00
meta = with stdenv.lib; {
2016-08-17 21:38:41 +02:00
description = "Ethereum function call encoding (ABI) utility";
2020-02-15 22:12:41 +01:00
homepage = "https://github.com/ethcore/ethabi/";
2018-09-01 14:04:59 +02:00
maintainers = [ maintainers.dbrock ];
license = licenses.gpl3;
2016-08-17 21:38:41 +02:00
inherit version;
};
}