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

29 lines
918 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
2016-07-21 01:33:39 +02:00
2017-07-05 15:27:28 +02:00
buildGoPackage rec {
2016-07-21 01:33:39 +02:00
name = "go-ethereum-${version}";
version = "1.8.21";
2016-07-21 01:33:39 +02: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 09:24:04 +02:00
# Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
hardeningDisable = [ "fortify" ];
2016-07-21 01:33:39 +02:00
2017-09-05 09:24:04 +02:00
src = fetchFromGitHub {
owner = "ethereum";
repo = "go-ethereum";
rev = "v${version}";
sha256 = "1p4qfxa90l26s9q4hddyb93gdf7vb0sb46z9n26ijiqlxdq3z7v2";
2016-07-21 01:33:39 +02:00
};
2017-09-15 02:52:18 +02:00
meta = with stdenv.lib; {
homepage = https://ethereum.github.io/go-ethereum/;
2016-07-21 01:33:39 +02:00
description = "Official golang implementation of the Ethereum protocol";
2017-09-15 02:52:18 +02:00
license = with licenses; [ lgpl3 gpl3 ];
2018-12-05 06:40:07 +01:00
maintainers = [ maintainers.adisbladis maintainers.lionello ];
2016-07-21 01:33:39 +02:00
};
}