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

60 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildGoModule, fetchFromGitHub, libobjc, IOKit }:
2016-07-20 23:33:39 +00:00
let
# A list of binaries to put into separate outputs
bins = [
"geth"
];
in buildGoModule rec {
2019-04-17 20:18:17 +00:00
pname = "go-ethereum";
2021-05-06 04:39:36 +00:00
version = "1.10.3";
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}";
2021-05-06 04:39:36 +00:00
sha256 = "sha256-85aUR7MvaPeRilC+4oj6XW2IEUvxRUsVz63tQ/Jc7xw=";
2016-07-20 23:33:39 +00:00
};
runVend = true;
2021-05-06 04:39:36 +00:00
vendorSha256 = "sha256-8zhVQ8FUdzog7h9RBfuq8uBp0zjulXbDOLAPljp4deA=";
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"
"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"
];
# 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
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; [ adisbladis lionello xrelkd RaghavSood ];
2016-07-20 23:33:39 +00:00
};
}