about summary refs log tree commit diff
path: root/pkgs/applications/blockchains/polkadot
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-09-16 01:17:05 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-09-16 01:17:05 +0000
commit0cfbf8139d96c05e1a217bbfef3c9941d6e2d7e4 (patch)
tree35f870f80c9764cdab6beb260caff25d11940787 /pkgs/applications/blockchains/polkadot
parenta30eeb16a07262f57fc51aa64f1012d7f6aa6db0 (diff)
downloadnixlib-0cfbf8139d96c05e1a217bbfef3c9941d6e2d7e4.tar
nixlib-0cfbf8139d96c05e1a217bbfef3c9941d6e2d7e4.tar.gz
nixlib-0cfbf8139d96c05e1a217bbfef3c9941d6e2d7e4.tar.bz2
nixlib-0cfbf8139d96c05e1a217bbfef3c9941d6e2d7e4.tar.lz
nixlib-0cfbf8139d96c05e1a217bbfef3c9941d6e2d7e4.tar.xz
nixlib-0cfbf8139d96c05e1a217bbfef3c9941d6e2d7e4.tar.zst
nixlib-0cfbf8139d96c05e1a217bbfef3c9941d6e2d7e4.zip
polkadot: 0.9.28 -> 0.9.29
Diffstat (limited to 'pkgs/applications/blockchains/polkadot')
-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 2e7df608eba0..92342bfda785 100644
--- a/pkgs/applications/blockchains/polkadot/default.nix
+++ b/pkgs/applications/blockchains/polkadot/default.nix
@@ -10,13 +10,13 @@
 }:
 rustPlatform.buildRustPackage rec {
   pname = "polkadot";
-  version = "0.9.28";
+  version = "0.9.29";
 
   src = fetchFromGitHub {
     owner = "paritytech";
     repo = "polkadot";
     rev = "v${version}";
-    sha256 = "sha256-PYPNbysk9jHGtAUGr8O/Ah0ArTNKQYYToR5djG+XujI=";
+    sha256 = "sha256-/IJs3153KzhGf5I6LueljzRhDl/PYYlPseF6wCh+u3M=";
 
     # 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.
@@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec {
     '';
   };
 
-  cargoSha256 = "sha256-Dqcjt3yvZdaHp6sIQFo9wYH/icIInyXqKHE1Q/JjrwY=";
+  cargoSha256 = "sha256-mI8VvTlM9ynstDBC0ubQkzg3D2ZXuWqJGS/Y23D6dU0=";
 
   buildInputs = lib.optional stdenv.isDarwin [ Security ];