eb11feaa0b
Changes the default fetcher in the Rust Platform to be the newer `fetchCargoTarball`, and changes every application using the current default to instead opt out. This commit does not change any hashes or cause any rebuilds. Once integrated, we will start deleting the opt-outs and recomputing hashes. See #79975 for details.
31 lines
746 B
Nix
31 lines
746 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
with rustPlatform;
|
|
|
|
buildRustPackage rec {
|
|
pname = "ethabi";
|
|
version = "7.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "paritytech";
|
|
repo = "ethabi";
|
|
rev = "v${version}";
|
|
sha256 = "1gqd3vwsvv1wvi659qcdywgmh41swblpwmmxb033k8irw581dwq4";
|
|
};
|
|
|
|
# Delete this on next update; see #79975 for details
|
|
legacyCargoFetcher = true;
|
|
|
|
cargoSha256 = "0zkdai31jf8f5syklaxq43ydjvp5xclr8pd6y1q6vkwjz6z49hzm";
|
|
|
|
cargoBuildFlags = ["--features cli"];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Ethereum function call encoding (ABI) utility";
|
|
homepage = https://github.com/ethcore/ethabi/;
|
|
maintainers = [ maintainers.dbrock ];
|
|
license = licenses.gpl3;
|
|
inherit version;
|
|
};
|
|
}
|