parity: add xrelkd as maintainer

This commit is contained in:
xrelkd 2019-07-31 16:06:49 +08:00
parent 511c57a4ce
commit df73e02913

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;
}; };
} }