2022-01-23 20:08:10 +00:00
|
|
|
{ lib, stdenv, buildGoModule, fetchFromGitHub, libobjc, IOKit, nixosTests }:
|
2016-07-20 23:33:39 +00:00
|
|
|
|
2021-02-21 23:27:17 +00:00
|
|
|
let
|
|
|
|
# A list of binaries to put into separate outputs
|
|
|
|
bins = [
|
|
|
|
"geth"
|
2021-02-24 15:17:40 +00:00
|
|
|
"clef"
|
2021-02-21 23:27:17 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
in buildGoModule rec {
|
2019-04-17 20:18:17 +00:00
|
|
|
pname = "go-ethereum";
|
2024-07-03 04:29:36 +00:00
|
|
|
version = "1.14.6";
|
2017-10-03 02:13:30 +00:00
|
|
|
|
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}";
|
2024-07-03 04:29:36 +00:00
|
|
|
sha256 = "sha256-X9XwVZpRnkp7oVKwyvQbs8ZaWwLkuLEEHNfV5BvfVvI=";
|
2016-07-20 23:33:39 +00:00
|
|
|
};
|
|
|
|
|
2024-05-12 21:34:00 +00:00
|
|
|
proxyVendor = true;
|
2024-07-03 04:29:36 +00:00
|
|
|
vendorHash = "sha256-UP+bQM8ydfbILlVhuNPVIKLyXZFTzGmHizn2hYgNE4Y=";
|
2019-11-27 00:18:34 +00:00
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-02-21 23:27:17 +00:00
|
|
|
outputs = [ "out" ] ++ bins;
|
|
|
|
|
|
|
|
# Move binaries to separate outputs and symlink them back to $out
|
|
|
|
postInstall = lib.concatStringsSep "\n" (
|
|
|
|
builtins.map (bin: "mkdir -p \$${bin}/bin && mv $out/bin/${bin} \$${bin}/bin/ && ln -s \$${bin}/bin/${bin} $out/bin/") bins
|
|
|
|
);
|
|
|
|
|
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"
|
2024-05-12 21:34:00 +00:00
|
|
|
"cmd/blsync"
|
2019-11-27 00:18:34 +00:00
|
|
|
"cmd/bootnode"
|
|
|
|
"cmd/clef"
|
|
|
|
"cmd/devp2p"
|
2024-05-12 21:34:00 +00:00
|
|
|
"cmd/era"
|
2019-11-27 00:18:34 +00:00
|
|
|
"cmd/ethkey"
|
|
|
|
"cmd/evm"
|
|
|
|
"cmd/geth"
|
|
|
|
"cmd/p2psim"
|
|
|
|
"cmd/rlpdump"
|
|
|
|
"cmd/utils"
|
|
|
|
];
|
|
|
|
|
2023-05-04 00:04:02 +00:00
|
|
|
# Following upstream: https://github.com/ethereum/go-ethereum/blob/v1.11.6/build/ci.go#L218
|
2022-08-27 18:35:37 +00:00
|
|
|
tags = [ "urfave_cli_no_docs" ];
|
|
|
|
|
2019-11-27 00:18:34 +00:00
|
|
|
# Fix for usb-related segmentation faults on darwin
|
|
|
|
propagatedBuildInputs =
|
2021-01-15 13:21:58 +00:00
|
|
|
lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
2019-11-27 00:18:34 +00:00
|
|
|
|
2022-01-23 20:08:10 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) geth; };
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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";
|
2021-02-21 23:54:19 +00:00
|
|
|
license = with licenses; [ lgpl3Plus gpl3Plus ];
|
2023-07-14 09:47:34 +00:00
|
|
|
maintainers = with maintainers; [ RaghavSood ];
|
2016-07-20 23:33:39 +00:00
|
|
|
};
|
|
|
|
}
|