mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 02:53:55 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
110 lines
2.9 KiB
Nix
110 lines
2.9 KiB
Nix
{ clang
|
|
, cmake
|
|
, fetchFromGitHub
|
|
, fetchurl
|
|
, lib
|
|
, lighthouse
|
|
, llvmPackages
|
|
, nodePackages
|
|
, perl
|
|
, protobuf
|
|
, rustPlatform
|
|
, Security
|
|
, CoreFoundation
|
|
, stdenv
|
|
, testers
|
|
, unzip
|
|
, nix-update-script
|
|
, SystemConfiguration
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "lighthouse";
|
|
version = "3.4.0";
|
|
|
|
# lighthouse/common/deposit_contract/build.rs
|
|
depositContractSpecVersion = "0.12.1";
|
|
testnetDepositContractSpecVersion = "0.9.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sigp";
|
|
repo = "lighthouse";
|
|
rev = "v${version}";
|
|
hash = "sha256-4auiM5+kj/HjZKu2YP7JEnwDNxHuL39XCfmV/dc5jLE=";
|
|
};
|
|
|
|
cargoHash = "sha256-ihfGwdxL7Ttw86dhaVBp5meb0caXjzgbbP27Io8zv/c=";
|
|
|
|
buildFeatures = [ "modern" "gnosis" ];
|
|
|
|
nativeBuildInputs = [ rustPlatform.bindgenHook cmake perl protobuf ];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
Security
|
|
] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [
|
|
CoreFoundation SystemConfiguration
|
|
];
|
|
|
|
depositContractSpec = fetchurl {
|
|
url = "https://raw.githubusercontent.com/ethereum/eth2.0-specs/v${depositContractSpecVersion}/deposit_contract/contracts/validator_registration.json";
|
|
hash = "sha256-ZslAe1wkmkg8Tua/AmmEfBmjqMVcGIiYHwi+WssEwa8=";
|
|
};
|
|
|
|
testnetDepositContractSpec = fetchurl {
|
|
url = "https://raw.githubusercontent.com/sigp/unsafe-eth2-deposit-contract/v${testnetDepositContractSpecVersion}/unsafe_validator_registration.json";
|
|
hash = "sha256-aeTeHRT3QtxBRSNMCITIWmx89vGtox2OzSff8vZ+RYY=";
|
|
};
|
|
|
|
LIGHTHOUSE_DEPOSIT_CONTRACT_SPEC_URL = "file://${depositContractSpec}";
|
|
LIGHTHOUSE_DEPOSIT_CONTRACT_TESTNET_URL = "file://${testnetDepositContractSpec}";
|
|
|
|
cargoBuildFlags = [
|
|
"--package lighthouse"
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
checkFeatures = [ ];
|
|
|
|
# All of these tests require network access
|
|
cargoTestFlags = [
|
|
"--workspace"
|
|
"--exclude beacon_node"
|
|
"--exclude http_api"
|
|
"--exclude beacon_chain"
|
|
"--exclude lighthouse"
|
|
"--exclude lighthouse_network"
|
|
"--exclude slashing_protection"
|
|
"--exclude web3signer_tests"
|
|
];
|
|
|
|
# All of these tests require network access
|
|
checkFlags = [
|
|
"--skip service::tests::tests::test_dht_persistence"
|
|
"--skip time::test::test_reinsertion_updates_timeout"
|
|
] ++ lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [
|
|
"--skip subnet_service::tests::sync_committee_service::same_subscription_with_lower_until_epoch"
|
|
"--skip subnet_service::tests::sync_committee_service::subscribe_and_unsubscribe"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
nodePackages.ganache
|
|
];
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = lighthouse;
|
|
command = "lighthouse --version";
|
|
version = "v${lighthouse.version}";
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Ethereum consensus client in Rust";
|
|
homepage = "https://lighthouse.sigmaprime.io/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ centromere pmw ];
|
|
};
|
|
}
|