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

41 lines
1.3 KiB
Nix
Raw Normal View History

2019-04-17 20:18:17 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit, fetchpatch }:
2016-07-20 23:33:39 +00:00
2017-07-05 13:27:28 +00:00
buildGoPackage rec {
2019-04-17 20:18:17 +00:00
pname = "go-ethereum";
version = "1.8.27";
2016-07-20 23:33:39 +00: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 07:24:04 +00:00
# Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
hardeningDisable = [ "fortify" ];
2016-07-20 23:33:39 +00:00
2019-04-17 20:18:17 +00:00
# Apply ethereum/go-ethereum#19183 to fix the aarch64 build failure.
#
# TODO Remove this patch when upstream (https://github.com/ethereum/go-ethereum)
# fix this problem in the future release.
patches = [
(fetchpatch {
url = "https://github.com/ethereum/go-ethereum/commit/39bd2609.patch";
sha256 = "1a362hzvcjk505hicv25kziy3c6s5an4j7rk4jibcxwgvygb3mz5";
})
];
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}";
2019-04-17 20:18:17 +00:00
sha256 = "1640y7lqy7bvjjgx6wp0cnbw632ls5fj4ixclr819lfz4p5dfhx1";
2016-07-20 23:33:39 +00:00
};
2017-09-15 00:52:18 +00:00
meta = with stdenv.lib; {
homepage = https://ethereum.github.io/go-ethereum/;
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-02-19 23:59:47 +00:00
maintainers = with maintainers; [ adisbladis asymmetric lionello ];
2016-07-20 23:33:39 +00:00
};
}