mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
8cec28b9b8
Diff: https://github.com/ton-blockchain/ton/compare/v2024.09...v2024.10
Changelog: https://github.com/ton-blockchain/ton/blob/v2024.10/Changelog.md
(cherry picked from commit f8cef63347
)
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, git
|
|
, pkg-config
|
|
, gperf
|
|
, libmicrohttpd
|
|
, libsodium
|
|
, lz4
|
|
, openssl
|
|
, readline
|
|
, secp256k1
|
|
, zlib
|
|
, nix-update-script
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ton";
|
|
version = "2024.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ton-blockchain";
|
|
repo = "ton";
|
|
rev = "v${version}";
|
|
hash = "sha256-Eab5tXP5gv9v/hu/Eh2WC/SeJ/bG1u6FKbREKB/ry9c=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
git
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
gperf
|
|
libmicrohttpd
|
|
libsodium
|
|
lz4
|
|
openssl
|
|
readline
|
|
secp256k1
|
|
zlib
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
# The build fails on darwin as:
|
|
# error: aligned allocation function of type 'void *(std::size_t, std::align_val_t)' is only available on macOS 10.13 or newer
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "Fully decentralized layer-1 blockchain designed by Telegram";
|
|
homepage = "https://ton.org/";
|
|
changelog = "https://github.com/ton-blockchain/ton/blob/v${version}/Changelog.md";
|
|
license = licenses.lgpl2Only;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ misuzu ];
|
|
};
|
|
}
|