about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAndré Silva <123550+andresilva@users.noreply.github.com>2023-01-04 17:30:34 +0000
committerGitHub <noreply@github.com>2023-01-04 17:30:34 +0000
commitb028f476fb471ecd6be86b4a6869f12e4028dc0f (patch)
treeb4cc21e2617ed927c10f4f5b6074e06685abd8a7 /pkgs/applications
parent60ad423963e839838c72cd7a299eed0bf1ca00ff (diff)
parentd46651e06331f07c05aff8a93c63951bcbc3622b (diff)
Merge pull request #205538 from r-ryantm/auto-update/polkadot
polkadot: 0.9.33 -> 0.9.36
Diffstat (limited to 'pkgs/applications')
-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 596130337c7ad..1f5636dd41c34 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.33";
+  version = "0.9.36";
 
   src = fetchFromGitHub {
     owner = "paritytech";
     repo = "polkadot";
     rev = "v${version}";
-    sha256 = "sha256-vAFGLcsbGuoaNtxtEIHSeX00nsULJROCEhaMv5IEcp4=";
+    sha256 = "sha256-HzQFlnn+SPasI0g0DYDCRoFCMVyxlUmEQAobvzRnAW4=";
 
     # 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-SZUkgtI/4kA5iWzalmGo5KXRHXKgdeCo2SSCVF66p5E=";
+  cargoSha256 = "sha256-P31GW/1HiaZLF6e8Fq1YnH1ZLhiOhURm8st9a4KRlJU=";
 
   buildInputs = lib.optionals stdenv.isDarwin [ Security ];