about summary refs log tree commit diff
path: root/pkgs/applications/blockchains/ton/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-12-07 12:01:24 +0000
committerGitHub <noreply@github.com>2023-12-07 12:01:24 +0000
commit860e5725bdfc7307b8257cbf9bf4a87dec978cc8 (patch)
treee410fc29c9dff2d52e1ee6a12f8394b0507bd96b /pkgs/applications/blockchains/ton/default.nix
parent32d842483f3773ec1cde181507bd77b405af046e (diff)
parent4a609ec5d195ed770a1b30fa49ba19a0947cd819 (diff)
downloadnixlib-860e5725bdfc7307b8257cbf9bf4a87dec978cc8.tar
nixlib-860e5725bdfc7307b8257cbf9bf4a87dec978cc8.tar.gz
nixlib-860e5725bdfc7307b8257cbf9bf4a87dec978cc8.tar.bz2
nixlib-860e5725bdfc7307b8257cbf9bf4a87dec978cc8.tar.lz
nixlib-860e5725bdfc7307b8257cbf9bf4a87dec978cc8.tar.xz
nixlib-860e5725bdfc7307b8257cbf9bf4a87dec978cc8.tar.zst
nixlib-860e5725bdfc7307b8257cbf9bf4a87dec978cc8.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/applications/blockchains/ton/default.nix')
-rw-r--r--pkgs/applications/blockchains/ton/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/blockchains/ton/default.nix b/pkgs/applications/blockchains/ton/default.nix
index 3e7fb1ae5f32..a65a1428df0e 100644
--- a/pkgs/applications/blockchains/ton/default.nix
+++ b/pkgs/applications/blockchains/ton/default.nix
@@ -9,17 +9,18 @@
 , openssl
 , readline
 , zlib
+, nix-update-script
 }:
 
 stdenv.mkDerivation rec {
   pname = "ton";
-  version = "2023.06";
+  version = "2023.10";
 
   src = fetchFromGitHub {
     owner = "ton-blockchain";
     repo = "ton";
     rev = "v${version}";
-    sha256 = "sha256-mDYuOokCGS1sDP6fHDXhGboDjn4JeyA5ea4/6RRt9x4=";
+    sha256 = "sha256-K1RhhW7EvwYV7/ng3NPjSGdHEQvJZ7K97YXd7s5wghc=";
     fetchSubmodules = true;
   };
 
@@ -39,6 +40,8 @@ stdenv.mkDerivation rec {
     zlib
   ];
 
+  passthru.updateScript = nix-update-script { };
+
   meta = with lib; {
     description = "A fully decentralized layer-1 blockchain designed by Telegram";
     homepage = "https://ton.org/";