Merge pull request #56075 from asymmetric/evmdis

evmdis: init at unstable-2018-03-23
This commit is contained in:
Joachim F 2019-04-24 20:24:35 +00:00 committed by GitHub
commit 1e40aef922
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "evmdis-unstable-${version}";
version = "2018-03-23";
goPackagePath = "github.com/Arachnid/evmdis";
src = fetchFromGitHub {
owner = "Arachnid";
repo = "evmdis";
rev = "0d1406905c5fda6224651fa53260a21c907eb986";
sha256 = "09y4j7ipgv8yd99g3xk3f079w8fqfj7kl1y7ry81ainysn0qlqrg";
};
meta = with stdenv.lib; {
homepage = https://github.com/Arachnid/evmdis;
description = "Ethereum EVM disassembler";
license = [ licenses.asl20 ];
maintainers = with maintainers; [ asymmetric ];
};
}

View file

@ -8944,6 +8944,8 @@ in
eresi = callPackage ../development/tools/analysis/eresi { };
evmdis = callPackage ../development/tools/analysis/evmdis { };
eweb = callPackage ../development/tools/literate-programming/eweb { };
eztrace = callPackage ../development/tools/profiling/EZTrace { };