summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorxrelkd <46590321+xrelkd@users.noreply.github.com>2019-07-31 16:06:49 +0800
committerxrelkd <46590321+xrelkd@users.noreply.github.com>2019-07-31 16:06:49 +0800
commitdf73e029136b3c615277c8ec8603025d21ad75b0 (patch)
treeded7e801eff908bffc215299c0de5a4e801fc0cb /pkgs/applications/altcoins
parent511c57a4cee2239cc2a16704a71fb3384f5fccf7 (diff)
downloadnixpkgs-df73e029136b3c615277c8ec8603025d21ad75b0.tar
nixpkgs-df73e029136b3c615277c8ec8603025d21ad75b0.tar.gz
nixpkgs-df73e029136b3c615277c8ec8603025d21ad75b0.tar.bz2
nixpkgs-df73e029136b3c615277c8ec8603025d21ad75b0.tar.lz
nixpkgs-df73e029136b3c615277c8ec8603025d21ad75b0.tar.xz
nixpkgs-df73e029136b3c615277c8ec8603025d21ad75b0.tar.zst
nixpkgs-df73e029136b3c615277c8ec8603025d21ad75b0.zip
parity: add xrelkd as maintainer
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/parity/parity.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/applications/altcoins/parity/parity.nix b/pkgs/applications/altcoins/parity/parity.nix
index 011a44fe170..79831f3304d 100644
--- a/pkgs/applications/altcoins/parity/parity.nix
+++ b/pkgs/applications/altcoins/parity/parity.nix
@@ -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;
   };
 }