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

29 lines
897 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
2016-07-20 19:33:39 -04:00
2017-07-05 09:27:28 -04:00
buildGoPackage rec {
2016-07-20 19:33:39 -04:00
name = "go-ethereum-${version}";
2018-10-14 01:30:48 -04:00
version = "1.8.17";
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";
repo = "go-ethereum";
rev = "v${version}";
2018-10-14 01:30:48 -04:00
sha256 = "0vm526gbyi8bygqwwki9hx7gf5g3xk2s1biyvwjidrydzj9i46zd";
2016-07-20 19:33:39 -04:00
};
2017-09-14 20:52:18 -04:00
meta = with stdenv.lib; {
homepage = https://ethereum.github.io/go-ethereum/;
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 ];
maintainers = [ maintainers.adisbladis ];
2016-07-20 19:33:39 -04:00
};
}