Skip to content

Commit

Permalink
ethrun: init at 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrock committed Apr 11, 2017
1 parent 5d5c0d5 commit 881595a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/applications/altcoins/default.nix
Expand Up @@ -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; };
Expand Down
24 changes: 24 additions & 0 deletions pkgs/applications/altcoins/ethrun.nix
@@ -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;
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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;

Expand Down

1 comment on commit 881595a

@matthewbauer
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like this is giving a failure:

http://hydra.nixos.org/build/51874867

Please sign in to comment.