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

47 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-09-10 16:10:05 +00:00
version = "1.9.21";
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-09-10 16:10:05 +00:00
sha256 = "0mr5pw08jka11lzgl28555nb90cqxx9vlqd1plfmyic6rb5z11df";
2016-07-20 23:33:39 +00:00
};
runVend = true;
2020-09-10 16:10:05 +00:00
vendorSha256 = "155hmny3543h02ryn1nnlpmvs0qvhd0lb66vmkhw5351m6gkbx7x";
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"
];
# 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 RaghavSood ];
2016-07-20 23:33:39 +00:00
};
}