2019-07-10 19:09:35 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
|
2016-07-21 00:33:39 +01:00
|
|
|
|
2017-07-05 14:27:28 +01:00
|
|
|
buildGoPackage rec {
|
2019-04-17 21:18:17 +01:00
|
|
|
pname = "go-ethereum";
|
2019-07-24 14:00:48 +01:00
|
|
|
version = "1.9.1";
|
2019-04-17 21:18:17 +01:00
|
|
|
|
2016-07-21 00:33:39 +01:00
|
|
|
goPackagePath = "github.com/ethereum/go-ethereum";
|
|
|
|
|
2017-10-03 03:13:30 +01:00
|
|
|
# Fix for usb-related segmentation faults on darwin
|
|
|
|
propagatedBuildInputs =
|
|
|
|
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
|
|
|
|
2017-09-05 08:24:04 +01:00
|
|
|
# Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
|
|
|
|
hardeningDisable = [ "fortify" ];
|
2016-07-21 00:33:39 +01:00
|
|
|
|
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-07-24 14:00:48 +01:00
|
|
|
sha256 = "05vnjdjwahdp2j7c6g81jchpdhxmdpbr20mjzpszylp9824v4cba";
|
2016-07-21 00:33:39 +01:00
|
|
|
};
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|