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

30 lines
901 B
Nix
Raw Normal View History

2019-07-10 14:09:35 -04:00
{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
2016-07-20 19:33:39 -04:00
2017-07-05 09:27:28 -04:00
buildGoPackage rec {
2019-04-17 16:18:17 -04:00
pname = "go-ethereum";
2019-09-03 08:51:18 -04:00
version = "1.9.3";
2019-04-17 16:18:17 -04:00
2016-07-20 19:33:39 -04: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 03:24:04 -04:00
# Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
hardeningDisable = [ "fortify" ];
2016-07-20 19:33:39 -04:00
2017-09-05 03:24:04 -04:00
src = fetchFromGitHub {
owner = "ethereum";
2019-04-17 16:18:17 -04:00
repo = pname;
2017-09-05 03:24:04 -04:00
rev = "v${version}";
2019-09-03 08:51:18 -04:00
sha256 = "0lv6gxp34j26hqazcvyr4c7rsl1vljm6cfzkcmlapsjdgym505bg";
2016-07-20 19:33:39 -04:00
};
2017-09-14 20:52:18 -04:00
meta = with stdenv.lib; {
2019-07-10 14:14:30 -04:00
homepage = "https://geth.ethereum.org/";
2016-07-20 19:33:39 -04:00
description = "Official golang implementation of the Ethereum protocol";
2017-09-14 20:52:18 -04:00
license = with licenses; [ lgpl3 gpl3 ];
2019-07-10 14:15:20 -04:00
maintainers = with maintainers; [ adisbladis asymmetric lionello xrelkd ];
2016-07-20 19:33:39 -04:00
};
}