Merge pull request #24819 from dbrock/ethrun

ethrun: init at 0.1.0
This commit is contained in:
Benno Fünfstück 2017-04-21 23:54:07 +02:00 committed by GitHub
commit a0e60af067
3 changed files with 26 additions and 0 deletions

View File

@ -35,6 +35,7 @@ rec {
namecoind = callPackage ./namecoind.nix { };
ethabi = callPackage ./ethabi.nix { };
ethrun = callPackage ./ethrun.nix { };
primecoin = callPackage ./primecoin.nix { withGui = true; };
primecoind = callPackage ./primecoin.nix { withGui = false; };

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, rustPlatform }:
with rustPlatform;
buildRustPackage rec {
name = "ethrun-${version}";
version = "0.1.0";
src = fetchFromGitHub {
owner = "dapphub";
repo = "ethrun";
rev = "v${version}";
sha256 = "1w651g4p2mc4ljp20l8lwvfx3l3fzyp6gf2izr85vyb1wjbaccqn";
};
depsSha256 = "14x8pbjgkz0g724lnvd9mi2alqd6fipjljw6xsraf9gqwijn1knq";
meta = {
description = "Directly run Ethereum bytecode";
homepage = https://github.com/dapphub/ethrun/;
maintainers = [stdenv.lib.maintainers.dbrock];
inherit version;
};
}

View File

@ -12931,6 +12931,7 @@ with pkgs;
go-ethereum = self.altcoins.go-ethereum;
ethabi = self.altcoins.ethabi;
ethrun = self.altcoins.ethrun;
stellar-core = self.altcoins.stellar-core;