32 lines
975 B
Nix
32 lines
975 B
Nix
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "go-ethereum-${version}";
|
|
version = "1.6.7";
|
|
goPackagePath = "github.com/ethereum/go-ethereum";
|
|
|
|
# Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ethereum";
|
|
repo = "go-ethereum";
|
|
rev = "v${version}";
|
|
sha256 = "19cq0pmif4y33v34jzvam4mcszl8vf2saf2gzfz01l4x1iv4hf1r";
|
|
};
|
|
|
|
# Fix cyclic referencing on Darwin
|
|
postInstall = stdenv.lib.optionalString (stdenv.isDarwin) ''
|
|
for file in $bin/bin/*; do
|
|
# Not all files are referencing $out/lib so consider this step non-critical
|
|
install_name_tool -delete_rpath $out/lib $file || true
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://ethereum.github.io/go-ethereum/;
|
|
description = "Official golang implementation of the Ethereum protocol";
|
|
license = with lib.licenses; [ lgpl3 gpl3 ];
|
|
};
|
|
}
|