ethrun: init at 0.1.0

This commit is contained in:
Daniel Brockman 2017-04-11 06:33:16 +02:00
parent 5d5c0d590f
commit 881595ac03
3 changed files with 26 additions and 0 deletions

View File

@ -32,6 +32,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

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