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

30 lines
901 B
Nix
Raw Normal View History

2019-07-10 11:09:35 -07:00
{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
2016-07-20 16:33:39 -07:00
2017-07-05 06:27:28 -07:00
buildGoPackage rec {
2019-04-17 13:18:17 -07:00
pname = "go-ethereum";
2019-09-27 16:48:53 -07:00
version = "1.9.5";
2019-04-17 13:18:17 -07:00
2016-07-20 16:33:39 -07:00
goPackagePath = "github.com/ethereum/go-ethereum";
# Fix for usb-related segmentation faults on darwin
propagatedBuildInputs =
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
2017-09-05 00:24:04 -07:00
# Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
hardeningDisable = [ "fortify" ];
2016-07-20 16:33:39 -07:00
2017-09-05 00:24:04 -07:00
src = fetchFromGitHub {
owner = "ethereum";
2019-04-17 13:18:17 -07:00
repo = pname;
2017-09-05 00:24:04 -07:00
rev = "v${version}";
2019-09-27 16:48:53 -07:00
sha256 = "1h1c02dgazlcgp9lrm0zsig80nfj0c9553jy9nsvjyzf95ym1542";
2016-07-20 16:33:39 -07:00
};
2017-09-14 17:52:18 -07:00
meta = with stdenv.lib; {
2019-07-10 11:14:30 -07:00
homepage = "https://geth.ethereum.org/";
2016-07-20 16:33:39 -07:00
description = "Official golang implementation of the Ethereum protocol";
2017-09-14 17:52:18 -07:00
license = with licenses; [ lgpl3 gpl3 ];
2019-07-10 11:15:20 -07:00
maintainers = with maintainers; [ adisbladis asymmetric lionello xrelkd ];
2016-07-20 16:33:39 -07:00
};
}