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

59 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub, libobjc, IOKit }:
2016-07-20 23:33:39 +00:00
2019-11-27 00:18:34 +00:00
buildGoModule rec {
2019-04-17 20:18:17 +00:00
pname = "go-ethereum";
2020-07-27 12:36:36 +00:00
version = "1.9.18";
2017-09-05 07:24:04 +00:00
src = fetchFromGitHub {
owner = "ethereum";
2019-04-17 20:18:17 +00:00
repo = pname;
2017-09-05 07:24:04 +00:00
rev = "v${version}";
2020-07-27 12:36:36 +00:00
sha256 = "0nkzwmrzk0m9662cr18h5i54v07mw8v3fh0csvqx8n50z5fcvb7b";
2016-07-20 23:33:39 +00:00
};
usb = fetchFromGitHub {
owner = "karalabe";
repo = "usb";
rev = "911d15fe12a9c411cf5d0dd5635231c759399bed";
sha256 = "0asd5fz2rhzkjmd8wjgmla5qmqyz4jaa6qf0n2ycia16jsck6wc2";
};
2020-07-27 12:36:36 +00:00
vendorSha256 = "13wh6r9zi5qw72xkbzy3mcgn7lv9l981x4lniypjbnkwhq2dj5iz";
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 00:14:02 +00: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 00:52:18 +00:00
meta = with stdenv.lib; {
2019-07-10 18:14:30 +00:00
homepage = "https://geth.ethereum.org/";
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 = with maintainers; [ adisbladis lionello xrelkd ];
2016-07-20 23:33:39 +00:00
};
}