polkadot: 0.9.36 -> 0.9.37

This commit is contained in:
André Silva 2023-01-23 12:42:20 +00:00
parent b380d382d3
commit 5e77fe111d
No known key found for this signature in database
GPG Key ID: 7C34FA12A023DC55
2 changed files with 6 additions and 5 deletions

View File

@ -7,16 +7,17 @@
, stdenv , stdenv
, writeShellScriptBin , writeShellScriptBin
, Security , Security
, SystemConfiguration
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "polkadot"; pname = "polkadot";
version = "0.9.36"; version = "0.9.37";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "paritytech"; owner = "paritytech";
repo = "polkadot"; repo = "polkadot";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-HzQFlnn+SPasI0g0DYDCRoFCMVyxlUmEQAobvzRnAW4="; hash = "sha256-/mgJNjliPUmMkhT/1oiX9+BJHfY3SMsKfFv9HCyWRQQ=";
# the build process of polkadot requires a .git folder in order to determine # the build process of polkadot requires a .git folder in order to determine
# the git commit hash that is being built and add it to the version string. # the git commit hash that is being built and add it to the version string.
@ -32,9 +33,9 @@ rustPlatform.buildRustPackage rec {
''; '';
}; };
cargoSha256 = "sha256-P31GW/1HiaZLF6e8Fq1YnH1ZLhiOhURm8st9a4KRlJU="; cargoHash = "sha256-o+APFYKgA3zjQSGrkpnyf5LEBBqvZtcfWlzCk6nL02A=";
buildInputs = lib.optionals stdenv.isDarwin [ Security ]; buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
nativeBuildInputs = [ rustPlatform.bindgenHook ]; nativeBuildInputs = [ rustPlatform.bindgenHook ];

View File

@ -34301,7 +34301,7 @@ with pkgs;
openethereum = callPackage ../applications/blockchains/openethereum { }; openethereum = callPackage ../applications/blockchains/openethereum { };
polkadot = callPackage ../applications/blockchains/polkadot { polkadot = callPackage ../applications/blockchains/polkadot {
inherit (darwin.apple_sdk.frameworks) Security; inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
}; };
particl-core = callPackage ../applications/blockchains/particl-core { }; particl-core = callPackage ../applications/blockchains/particl-core { };