1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00
nixpkgs/pkgs/applications/altcoins/go-ethereum.nix

29 lines
902 B
Nix
Raw Normal View History

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