parity: 3.0.0 -> 3.0.1 and rename it to openethereum

This commit is contained in:
Echo Nolan 2020-07-31 23:01:08 -07:00
parent 64a9b4b7a3
commit 9db2259083
4 changed files with 33 additions and 8 deletions

View file

@ -9,17 +9,21 @@
}:
rustPlatform.buildRustPackage rec {
pname = "parity";
version = "3.0.0";
pname = "openethereum";
version = "3.0.1";
src = fetchFromGitHub {
owner = "paritytech";
repo = "parity-ethereum";
owner = "openethereum";
repo = "openethereum";
rev = "v${version}";
sha256 = "124km8c2d7877yzd885wzlcl3gky15isx0z2l1qg1q3cqdsb5mjf";
sha256 = "08dkcrga1x18csh6pw6f54x5xwijppyjhg46cf4p452xc1l3a6ir";
};
cargoSha256 = "0m4pms7agfyqk6gz6fwxdl8jmcyhphhzh3x4vykbi6186y7a8ihq";
cargoSha256 = "1xliragihwjfc5qmfm0ng519bw8a28m1w1yqcl9mpk8zywiybaah";
verifyCargoDeps = true;
cargoPatches = [ ./lock.patch ];
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
nativeBuildInputs = [
@ -38,7 +42,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "Fast, light, robust Ethereum implementation";
homepage = "http://parity.io";
homepage = "http://parity.io/ethereum";
license = licenses.gpl3;
maintainers = with maintainers; [ akru xrelkd ];
platforms = platforms.linux;

View file

@ -0,0 +1,20 @@
--- /nix/store/hv764a65zmfzw5scjhz5839agv10da6x-source/Cargo.lock 1969-12-31 16:00:01.000000000 -0800
+++ ./Cargo.lock 2020-07-31 21:30:31.146750066 -0700
@@ -3113,7 +3113,7 @@
[[package]]
name = "openethereum"
-version = "3.0.0"
+version = "3.0.1"
dependencies = [
"ansi_term",
"atty",
@@ -3562,7 +3562,7 @@
[[package]]
name = "parity-version"
-version = "3.0.0"
+version = "3.0.1"
dependencies = [
"parity-bytes",
"rlp",

View file

@ -335,6 +335,7 @@ mapAliases ({
otter-browser = throw "otter-browser has been removed from nixpkgs, as it was unmaintained"; # added 2020-02-02
owncloudclient = owncloud-client; # added 2016-08
p11_kit = p11-kit; # added 2018-02-25
parity = openethereum; # added 2020-08-01
parquet-cpp = arrow-cpp; # added 2018-09-08
pass-otp = pass.withExtensions (ext: [ext.pass-otp]); # added 2018-05-04
perlXMLParser = perlPackages.XMLParser; # added 2018-10-12

View file

@ -23886,7 +23886,7 @@ in
zcash = callPackage ../applications/blockchains/zcash { };
parity = callPackage ../applications/blockchains/parity { };
openethereum = callPackage ../applications/blockchains/openethereum { };
parity-ui = callPackage ../applications/blockchains/parity-ui { };