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

59 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub, libobjc, IOKit }:
2016-07-21 00:33:39 +01:00
2019-11-27 00:18:34 +00:00
buildGoModule rec {
2019-04-17 21:18:17 +01:00
pname = "go-ethereum";
2020-07-20 14:27:17 +01:00
version = "1.9.17";
2017-09-05 08:24:04 +01:00
src = fetchFromGitHub {
owner = "ethereum";
2019-04-17 21:18:17 +01:00
repo = pname;
2017-09-05 08:24:04 +01:00
rev = "v${version}";
2020-07-20 14:27:17 +01:00
sha256 = "175cy5cqkdhvh3kv2d0madybbz2sdbgxhm8xfb3ydbaf2hzihxmx";
2016-07-21 00:33:39 +01:00
};
usb = fetchFromGitHub {
owner = "karalabe";
repo = "usb";
rev = "911d15fe12a9c411cf5d0dd5635231c759399bed";
sha256 = "0asd5fz2rhzkjmd8wjgmla5qmqyz4jaa6qf0n2ycia16jsck6wc2";
};
2020-07-10 14:54:25 +01:00
vendorSha256 = "0w2214fllw93xbrlxayhl014aqbjsc8zz7mpik7w5b26m60hn5kr";
overrideModAttrs = (_: {
postBuild = ''
cp -r --reflink=auto ${usb}/libusb vendor/github.com/karalabe/usb
cp -r --reflink=auto ${usb}/hidapi vendor/github.com/karalabe/usb
'';
});
2019-11-27 00:18:34 +00:00
subPackages = [
2020-04-17 01:14:02 +01:00
"cmd/abidump"
2019-11-27 00:18:34 +00:00
"cmd/abigen"
"cmd/bootnode"
"cmd/checkpoint-admin"
"cmd/clef"
"cmd/devp2p"
"cmd/ethkey"
"cmd/evm"
"cmd/faucet"
"cmd/geth"
"cmd/p2psim"
"cmd/puppeth"
"cmd/rlpdump"
"cmd/utils"
"cmd/wnode"
];
# Fix for usb-related segmentation faults on darwin
propagatedBuildInputs =
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
2017-09-15 01:52:18 +01:00
meta = with stdenv.lib; {
2019-07-10 19:14:30 +01:00
homepage = "https://geth.ethereum.org/";
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 = with maintainers; [ adisbladis lionello xrelkd ];
2016-07-21 00:33:39 +01:00
};
}