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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildGoModule, fetchFromGitHub, libobjc, IOKit, nixosTests }:
2016-07-20 23:33:39 +00:00
let
# A list of binaries to put into separate outputs
bins = [
"geth"
"clef"
];
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-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
doCheck = false;
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
passthru.tests = { inherit (nixosTests) geth; };
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";
license = with licenses; [ lgpl3Plus gpl3Plus ];
maintainers = with maintainers; [ RaghavSood ];
2016-07-20 23:33:39 +00:00
};
}