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

33 lines
1.0 KiB
Nix
Raw Normal View History

2017-09-05 07:24:04 +00:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
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}";
2017-09-15 00:52:18 +00:00
version = "1.7.0";
2016-07-20 23:33:39 +00:00
goPackagePath = "github.com/ethereum/go-ethereum";
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}";
2017-09-15 00:52:18 +00:00
sha256 = "0ybjaiyrfb320rab6a5r9iiqvkrcd8b2qvixzx0kjmc4a7l1q5zh";
2016-07-20 23:33:39 +00:00
};
2017-09-05 07:24:04 +00:00
# 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
'';
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 ];
maintainers = [ maintainers.adisbladis ];
2016-07-20 23:33:39 +00:00
};
}