nixpkgs/pkgs/applications/altcoins/ethabi.nix

27 lines
634 B
Nix
Raw Normal View History

2016-08-17 19:38:41 +00:00
{ stdenv, fetchFromGitHub, rustPlatform }:
with rustPlatform;
buildRustPackage rec {
name = "ethabi-${version}";
2018-03-02 13:19:29 +00:00
version = "4.1.0";
2016-08-17 19:38:41 +00:00
src = fetchFromGitHub {
2017-04-11 03:39:03 +00:00
owner = "paritytech";
2016-08-17 19:38:41 +00:00
repo = "ethabi";
2018-03-02 13:19:29 +00:00
rev = "v${version}";
sha256 = "0kxflixmgycdh7sv73zf2mrkbcfzzw7f5sjbsjks9crc9cvjqi6p";
2016-08-17 19:38:41 +00:00
};
2018-03-02 13:19:29 +00:00
cargoSha256 = "18rigpsmfiv6im2sspnxadgqrlfdp9dd75ji8s56ksc9g7hrc3wz";
2016-08-17 19:38:41 +00:00
cargoBuildFlags = ["--features cli"];
2016-08-17 19:38:41 +00:00
meta = {
description = "Ethereum function call encoding (ABI) utility";
homepage = https://github.com/ethcore/ethabi/;
maintainers = [stdenv.lib.maintainers.dbrock];
inherit version;
};
}