ethabi: init at 0.2.1
This commit is contained in:
parent
8d4de4fe4f
commit
200fa32911
@ -27,6 +27,8 @@ rec {
|
|||||||
namecoin = callPackage ./namecoin.nix { inherit namecoind; };
|
namecoin = callPackage ./namecoin.nix { inherit namecoind; };
|
||||||
namecoind = callPackage ./namecoind.nix { };
|
namecoind = callPackage ./namecoind.nix { };
|
||||||
|
|
||||||
|
ethabi = callPackage ./ethabi.nix { };
|
||||||
|
|
||||||
primecoin = callPackage ./primecoin.nix { withGui = true; };
|
primecoin = callPackage ./primecoin.nix { withGui = true; };
|
||||||
primecoind = callPackage ./primecoin.nix { withGui = false; };
|
primecoind = callPackage ./primecoin.nix { withGui = false; };
|
||||||
|
|
||||||
|
24
pkgs/applications/altcoins/ethabi.nix
Normal file
24
pkgs/applications/altcoins/ethabi.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||||
|
|
||||||
|
with rustPlatform;
|
||||||
|
|
||||||
|
buildRustPackage rec {
|
||||||
|
name = "ethabi-${version}";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ethcore";
|
||||||
|
repo = "ethabi";
|
||||||
|
rev = "fbed04984cab0db8767e01054ee16271b8e36281";
|
||||||
|
sha256 = "1zgyyg1i5wmz8l1405yg5jmq4ddq530sl7018pkkc7l6cjj3bbhd";
|
||||||
|
};
|
||||||
|
|
||||||
|
depsSha256 = "0srxv0wbhvyflc967lkpd2mx5nk7asx2cbxa0qxvas16wy6vxz52";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Ethereum function call encoding (ABI) utility";
|
||||||
|
homepage = https://github.com/ethcore/ethabi/;
|
||||||
|
maintainers = [stdenv.lib.maintainers.dbrock];
|
||||||
|
inherit version;
|
||||||
|
};
|
||||||
|
}
|
@ -12377,6 +12377,7 @@ in
|
|||||||
bitcoin-xt = self.altcoins.bitcoin-xt;
|
bitcoin-xt = self.altcoins.bitcoin-xt;
|
||||||
|
|
||||||
go-ethereum = self.altcoins.go-ethereum;
|
go-ethereum = self.altcoins.go-ethereum;
|
||||||
|
ethabi = self.altcoins.ethabi;
|
||||||
|
|
||||||
aumix = callPackage ../applications/audio/aumix {
|
aumix = callPackage ../applications/audio/aumix {
|
||||||
gtkGUI = false;
|
gtkGUI = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user