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

44 lines
1.0 KiB
Nix
Raw Normal View History

2019-11-27 00:18:34 +00:00
{ stdenv, buildGoModule, fetchFromGitHub, libobjc, IOKit }:
2016-07-21 00:33:39 +01:00
2019-11-27 00:18:34 +00:00
buildGoModule rec {
2019-04-17 21:18:17 +01:00
pname = "go-ethereum";
2019-12-06 12:45:00 +00:00
version = "1.9.9";
2017-09-05 08:24:04 +01:00
src = fetchFromGitHub {
owner = "ethereum";
2019-04-17 21:18:17 +01:00
repo = pname;
2017-09-05 08:24:04 +01:00
rev = "v${version}";
2019-12-06 12:45:00 +00:00
sha256 = "00fhqn0b9grqz8iigzbijg7b1va58vccjb15fpy6yfr301z3ib1q";
2016-07-21 00:33:39 +01:00
};
2019-12-06 12:45:00 +00:00
modSha256 = "1rn1x3qc23wfcx9c61sw1sc6iqwvv2b9pv006lk1az4zbwh09dbm";
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"
];
# Fix for usb-related segmentation faults on darwin
propagatedBuildInputs =
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
2017-09-15 01:52:18 +01:00
meta = with stdenv.lib; {
2019-07-10 19:14:30 +01:00
homepage = "https://geth.ethereum.org/";
2016-07-21 00:33:39 +01:00
description = "Official golang implementation of the Ethereum protocol";
2017-09-15 01:52:18 +01:00
license = with licenses; [ lgpl3 gpl3 ];
2019-07-10 19:15:20 +01:00
maintainers = with maintainers; [ adisbladis asymmetric lionello xrelkd ];
2016-07-21 00:33:39 +01:00
};
}