about summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-03-05 02:36:21 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-03-05 02:36:21 +0000
commite10f9f1fbfb20acbf9b1643c7ec39e6d28bc2174 (patch)
tree8ddfdd32f9e11d96a689c839d59b71f27a0b2c1c /pkgs/applications/blockchains
parentf71c25b983d2724a3e98266ebee801088f504856 (diff)
polkadot: 0.9.38 -> 0.9.39
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/polkadot/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/blockchains/polkadot/default.nix b/pkgs/applications/blockchains/polkadot/default.nix
index 7a7e461b1a217..096ff9bd9b0ec 100644
--- a/pkgs/applications/blockchains/polkadot/default.nix
+++ b/pkgs/applications/blockchains/polkadot/default.nix
@@ -12,13 +12,13 @@
 }:
 rustPlatform.buildRustPackage rec {
   pname = "polkadot";
-  version = "0.9.38";
+  version = "0.9.39";
 
   src = fetchFromGitHub {
     owner = "paritytech";
     repo = "polkadot";
     rev = "v${version}";
-    hash = "sha256-qS9LZ9KBjOw7hEkUzu7eZFj6ZwbkCDxoqA7FPXb13o4=";
+    hash = "sha256-ewjab9BtItJWtadEZO1PH5+2fOAafNof+2uVm8e78V4=";
 
     # 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.
@@ -34,7 +34,7 @@ rustPlatform.buildRustPackage rec {
     '';
   };
 
-  cargoHash = "sha256-4BOgG/NzSppTeEtoEVxqlYjV4FGkNFMeF+qCJwPz+7o=";
+  cargoHash = "sha256-KqdUh+ES9UB01yrmNVXdiyYZPh9pjJOEjcuwlJr6Jxc=";
 
   buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];