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

46 lines
1.1 KiB
Nix
Raw Normal View History

2020-03-21 10:11:00 +00:00
{ stdenv, buildGoModule, fetchFromGitHub, libobjc, IOKit, CoreServices }:
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-03-14 06:04:25 +00:00
version = "1.9.11";
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-03-14 06:04:25 +00:00
sha256 = "0xhkdxn5ajzi05252is5whqank81xy94jp1l5z2a44rajv8rh9vs";
2016-07-20 23:33:39 +00:00
};
2020-03-14 06:04:25 +00:00
modSha256 = "0jcj0knkhyndndyv1j9xhgbg5psagvyd27ailna3x9ikjlb8f7gg";
2019-11-27 00:18:34 +00:00
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"
];
2020-03-21 10:11:00 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
2019-11-27 00:18:34 +00:00
# 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 ];
2019-07-10 18:15:20 +00:00
maintainers = with maintainers; [ adisbladis asymmetric lionello xrelkd ];
2016-07-20 23:33:39 +00:00
};
}