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
version = "2.5.4";
sha256 = "103kg0lrijf6d0mc1nk4pdgwgkmp9ga51rwfqrkkm133lylrr0lf";
cargoSha256 = "1w9p43v76igb62mbjk2rl7fynk13l4hpz25jd4f4hk5b2y2wf3r7";
version = "2.6.0";
sha256 = "1v0wc6l09nr42ljlq5lq1dgignm53hq3pmrgp2sld9zfxy3vdy0x";
cargoSha256 = "1bkcvziz0diy76nbcgykajpnp6akva0m7ka7q6w3s9k7awxjxkx3";
in
import ./parity.nix { inherit version sha256 cargoSha256; }

View File

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

View File

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