summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/evmdis/default.nix
blob: c250f442a0ebf26995d969e08e3eef3e1d7706da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage {
  pname = "evmdis-unstable";
  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 ];
  };
}