mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
b426c85ce2
This requires some small changes in the stdenv, then working around the weird choice LLVM made to hardcode @rpath in its install name, and then lets us remove a ton of annoying workaround hacks in many of our Go packages. With any luck this will mean less hackery going forward.
29 lines
901 B
Nix
29 lines
901 B
Nix
{ stdenv, lib, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
|
|
|
|
buildGoPackage rec {
|
|
name = "go-ethereum-${version}";
|
|
version = "1.7.1";
|
|
goPackagePath = "github.com/ethereum/go-ethereum";
|
|
|
|
# Fix for usb-related segmentation faults on darwin
|
|
propagatedBuildInputs =
|
|
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
|
|
|
# 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 = "1rhqnqp2d951d4084z7dc07q0my4wd5401968a0nqj030a9vgng2";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://ethereum.github.io/go-ethereum/;
|
|
description = "Official golang implementation of the Ethereum protocol";
|
|
license = with licenses; [ lgpl3 gpl3 ];
|
|
maintainers = [ maintainers.adisbladis ];
|
|
};
|
|
}
|