go-ethereum: 1.9.7 -> 1.9.8
This commit is contained in:
parent
6d7145b966
commit
1e042e9338
@ -1,22 +1,39 @@
|
|||||||
{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
|
{ stdenv, buildGoModule, fetchFromGitHub, libobjc, IOKit }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "go-ethereum";
|
pname = "go-ethereum";
|
||||||
version = "1.9.7";
|
version = "1.9.8";
|
||||||
|
|
||||||
goPackagePath = "github.com/ethereum/go-ethereum";
|
|
||||||
|
|
||||||
# Fix for usb-related segmentation faults on darwin
|
|
||||||
propagatedBuildInputs =
|
|
||||||
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ethereum";
|
owner = "ethereum";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "07110dj91wmkpwz7iy0lmxx3y9wjxjrhk3rhkfdil74cxm0wkkn2";
|
sha256 = "0v4hchy6h3282347ps11iv7klcr60bmghha78rnp0iqpx2k8pqb4";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
modSha256 = "1l10p6a4qq77pfx7jmipkcg2qg6w3hg83q5a37yid3apily2scfa";
|
||||||
|
|
||||||
|
subPackages = [
|
||||||
|
"cmd/abigen"
|
||||||
|
"cmd/bootnode"
|
||||||
|
"cmd/checkpoint-admin"
|
||||||
|
"cmd/clef"
|
||||||
|
"cmd/devp2p"
|
||||||
|
"cmd/ethkey"
|
||||||
|
"cmd/evm"
|
||||||
|
"cmd/faucet"
|
||||||
|
"cmd/geth"
|
||||||
|
"cmd/p2psim"
|
||||||
|
"cmd/puppeth"
|
||||||
|
"cmd/rlpdump"
|
||||||
|
"cmd/utils"
|
||||||
|
"cmd/wnode"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Fix for usb-related segmentation faults on darwin
|
||||||
|
propagatedBuildInputs =
|
||||||
|
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://geth.ethereum.org/";
|
homepage = "https://geth.ethereum.org/";
|
||||||
description = "Official golang implementation of the Ethereum protocol";
|
description = "Official golang implementation of the Ethereum protocol";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user