2020-02-15 02:31:42 +01:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, cmake
|
|
|
|
, openssl
|
|
|
|
, pkg-config
|
2020-10-01 01:16:27 +02:00
|
|
|
, stdenv
|
2020-02-15 02:31:42 +01:00
|
|
|
, systemd
|
2020-10-01 01:16:27 +02:00
|
|
|
, darwin
|
2020-02-15 02:31:42 +01:00
|
|
|
}:
|
|
|
|
|
2021-05-15 22:40:50 +02:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-08-01 08:01:08 +02:00
|
|
|
pname = "openethereum";
|
2022-04-08 22:48:31 +02:00
|
|
|
version = "3.3.5";
|
2020-02-15 02:31:42 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-08-01 08:01:08 +02:00
|
|
|
owner = "openethereum";
|
|
|
|
repo = "openethereum";
|
2020-02-15 02:31:42 +01:00
|
|
|
rev = "v${version}";
|
2022-04-08 22:48:31 +02:00
|
|
|
sha256 = "sha256-PpRRoufuZ9fXbLonMAo6qaA/jtJZXW98uM0BEXdJ2oU=";
|
2020-02-15 02:31:42 +01:00
|
|
|
};
|
|
|
|
|
2022-04-08 22:48:31 +02:00
|
|
|
cargoSha256 = "sha256-xXUNXQvVq6XqW/hmCfJ2/mHKkZu0amRZ77vX+Jib0iM=";
|
2020-02-15 02:31:42 +01:00
|
|
|
|
2021-05-06 05:15:18 +02:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2020-02-15 02:31:42 +01:00
|
|
|
|
2020-10-01 01:16:27 +02:00
|
|
|
buildInputs = [ openssl ]
|
2021-01-15 14:21:58 +01:00
|
|
|
++ lib.optionals stdenv.isLinux [ systemd ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ darwin.Security ];
|
2020-02-15 02:31:42 +01:00
|
|
|
|
2021-11-16 01:09:07 +01:00
|
|
|
buildFeatures = [ "final" ];
|
2020-02-15 02:31:42 +01:00
|
|
|
|
2021-01-21 09:26:23 +01:00
|
|
|
# Fix tests by preventing them from writing to /homeless-shelter.
|
|
|
|
preCheck = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Exclude some tests that don't work in the sandbox
|
|
|
|
# - Nat test requires network access
|
2022-10-03 15:56:51 +02:00
|
|
|
checkFlags = [ "--skip" "configuration::tests::should_resolve_external_nat_hosts" ];
|
2020-02-15 02:31:42 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
2022-05-28 15:28:44 +02:00
|
|
|
broken = stdenv.isDarwin;
|
2020-02-15 02:31:42 +01:00
|
|
|
description = "Fast, light, robust Ethereum implementation";
|
2020-08-01 08:01:08 +02:00
|
|
|
homepage = "http://parity.io/ethereum";
|
2020-02-15 02:31:42 +01:00
|
|
|
license = licenses.gpl3;
|
2021-08-21 13:02:24 +02:00
|
|
|
maintainers = with maintainers; [ akru ];
|
2021-01-15 14:21:58 +01:00
|
|
|
platforms = lib.platforms.unix;
|
2020-02-15 02:31:42 +01:00
|
|
|
};
|
|
|
|
}
|