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

27 lines
774 B
Nix
Raw Normal View History

2019-07-10 20:09:35 +02:00
{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
2016-07-21 01:33:39 +02:00
2017-07-05 15:27:28 +02:00
buildGoPackage rec {
2019-04-17 22:18:17 +02:00
pname = "go-ethereum";
2019-10-10 13:54:46 +02:00
version = "1.9.6";
2019-04-17 22:18:17 +02:00
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
src = fetchFromGitHub {
owner = "ethereum";
2019-04-17 22:18:17 +02:00
repo = pname;
2017-09-05 09:24:04 +02:00
rev = "v${version}";
2019-10-10 13:54:46 +02:00
sha256 = "08k6p7mbszlg8mq8k3vi5xrfnhfbxlh2ynd0nr0j64qdhmhcdnq6";
2016-07-21 01:33:39 +02:00
};
2017-09-15 02:52:18 +02:00
meta = with stdenv.lib; {
2019-07-10 20:14:30 +02:00
homepage = "https://geth.ethereum.org/";
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 ];
2019-07-10 20:15:20 +02:00
maintainers = with maintainers; [ adisbladis asymmetric lionello xrelkd ];
2016-07-21 01:33:39 +02:00
};
}