nixpkgs/pkgs/applications/blockchains/go-ethereum.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub, libobjc, IOKit }:
2016-07-20 23:33:39 +00:00
2019-11-27 00:18:34 +00:00
buildGoModule rec {
2019-04-17 20:18:17 +00:00
pname = "go-ethereum";
2020-07-27 12:36:36 +00:00
version = "1.9.18";
2017-09-05 07:24:04 +00:00
src = fetchFromGitHub {
owner = "ethereum";
2019-04-17 20:18:17 +00:00
repo = pname;
2017-09-05 07:24:04 +00:00
rev = "v${version}";
2020-07-27 12:36:36 +00:00
sha256 = "0nkzwmrzk0m9662cr18h5i54v07mw8v3fh0csvqx8n50z5fcvb7b";
2016-07-20 23:33:39 +00:00
};
runVend = true;
vendorSha256 = "1744df059bjksvih4653nnvb4kb1xvzdhypd0nnz36m1wrihqssv";
2019-11-27 00:18:34 +00:00
doCheck = false;
2019-11-27 00:18:34 +00:00
subPackages = [
2020-04-17 00:14:02 +00:00
"cmd/abidump"
2019-11-27 00:18:34 +00:00
"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 ];
2017-09-15 00:52:18 +00:00
meta = with stdenv.lib; {
2019-07-10 18:14:30 +00:00
homepage = "https://geth.ethereum.org/";
2016-07-20 23:33:39 +00:00
description = "Official golang implementation of the Ethereum protocol";
2017-09-15 00:52:18 +00:00
license = with licenses; [ lgpl3 gpl3 ];
maintainers = with maintainers; [ adisbladis lionello xrelkd ];
2016-07-20 23:33:39 +00:00
};
}