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

29 lines
923 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
2016-07-20 23:33:39 +00:00
2017-07-05 13:27:28 +00:00
buildGoPackage rec {
2016-07-20 23:33:39 +00:00
name = "go-ethereum-${version}";
2019-04-10 17:24:14 +00:00
version = "1.8.26";
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
2017-09-05 07:24:04 +00:00
src = fetchFromGitHub {
owner = "ethereum";
repo = "go-ethereum";
rev = "v${version}";
2019-04-10 17:24:14 +00:00
sha256 = "0i7shrwix5j8l5i0ap5pzhninwyk2kvm1pax27pnnjlpam8577i4";
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
};
}