mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 19:15:39 +00:00
991276361b
Per comment in the upstream release notes, the `beta` track is no longer maintained, and parity only has `stable` releases, so this deletes the beta expression entirely. https://github.com/paritytech/parity-ethereum/releases This also updates to the new fetchCargoTarball implementation as part of #79975
47 lines
1,017 B
Nix
47 lines
1,017 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, cmake
|
|
, llvmPackages
|
|
, openssl
|
|
, pkg-config
|
|
, systemd
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "parity";
|
|
version = "2.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "paritytech";
|
|
repo = "parity-ethereum";
|
|
rev = "v${version}";
|
|
sha256 = "09cvqk0h9c26famh3f1nc3g74cd0zk6klys977yr1f13bgqmzx0x";
|
|
};
|
|
|
|
cargoSha256 = "1fdymy8hvn137i5y4flyhlxwjxkd2cd6gq81i1429gk7j3h085ig";
|
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
|
nativeBuildInputs = [
|
|
cmake
|
|
llvmPackages.clang
|
|
llvmPackages.libclang
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [ openssl systemd ];
|
|
|
|
cargoBuildFlags = [ "--features final" ];
|
|
|
|
# test result: FAILED. 88 passed; 13 failed; 0 ignored; 0 measured; 0 filtered out
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Fast, light, robust Ethereum implementation";
|
|
homepage = "http://parity.io";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ akru xrelkd ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|