Merge pull request #65628 from xrelkd/update/parity

parity: 2.4.9 -> 2.5.5,  parity-beta: 2.5.4 -> 2.6.0
This commit is contained in:
Mario Rodas 2019-07-31 08:04:11 -05:00 committed by GitHub
commit 28effc0819
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 10 deletions

View File

@ -1,6 +1,6 @@
let let
version = "2.5.4"; version = "2.6.0";
sha256 = "103kg0lrijf6d0mc1nk4pdgwgkmp9ga51rwfqrkkm133lylrr0lf"; sha256 = "1v0wc6l09nr42ljlq5lq1dgignm53hq3pmrgp2sld9zfxy3vdy0x";
cargoSha256 = "1w9p43v76igb62mbjk2rl7fynk13l4hpz25jd4f4hk5b2y2wf3r7"; cargoSha256 = "1bkcvziz0diy76nbcgykajpnp6akva0m7ka7q6w3s9k7awxjxkx3";
in in
import ./parity.nix { inherit version sha256 cargoSha256; } import ./parity.nix { inherit version sha256 cargoSha256; }

View File

@ -1,6 +1,6 @@
let let
version = "2.4.9"; version = "2.5.5";
sha256 = "0pj3yyjzc3fq0r7g8j22anzqxvm377pbcy27np1g7ygkzapzb2v6"; sha256 = "193fnrf1pr67wblyxd5gbrg1rgflphnfaxgm3kb4iawjh18br6c6";
cargoSha256 = "1dxn00zxivmgk4a61nxwhjlv7fjsy2ngadyw0br1ssrkgz9k7af2"; cargoSha256 = "1w9p43v76igb62mbjk2rl7fynk13l4hpz25jd4f4hk5b2y2wf3r7";
in in
import ./parity.nix { inherit version sha256 cargoSha256; } import ./parity.nix { inherit version sha256 cargoSha256; }

View File

@ -3,9 +3,10 @@
, cargoSha256 , cargoSha256
}: }:
{ stdenv { lib
, fetchFromGitHub , fetchFromGitHub
, rustPlatform , rustPlatform
, pkgconfig , pkgconfig
, openssl , openssl
, systemd , systemd
@ -14,7 +15,8 @@
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
name = "parity-${version}"; pname = "parity";
inherit version;
inherit cargoSha256; inherit cargoSha256;
src = fetchFromGitHub { src = fetchFromGitHub {
@ -34,11 +36,11 @@ rustPlatform.buildRustPackage rec {
# test result: FAILED. 80 passed; 12 failed; 0 ignored; 0 measured; 0 filtered out # test result: FAILED. 80 passed; 12 failed; 0 ignored; 0 measured; 0 filtered out
doCheck = false; doCheck = false;
meta = with stdenv.lib; { meta = with lib; {
description = "Fast, light, robust Ethereum implementation"; description = "Fast, light, robust Ethereum implementation";
homepage = "http://parity.io"; homepage = "http://parity.io";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = [ maintainers.akru ]; maintainers = with maintainers; [ akru xrelkd ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }