biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / blockchains / ton / default.nix
blob888b6f8d2b97ec1539cdf1bbffbe96845e82d423
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , git
6 , pkg-config
7 , gperf
8 , libmicrohttpd
9 , libsodium
10 , openssl
11 , readline
12 , secp256k1
13 , zlib
14 , nix-update-script
17 stdenv.mkDerivation rec {
18   pname = "ton";
19   version = "2024.03";
21   src = fetchFromGitHub {
22     owner = "ton-blockchain";
23     repo = "ton";
24     rev = "v${version}";
25     hash = "sha256-AVg33aZAyedmNIFqQJm4Nn6luLxK4mKgnIRmNU7j2C0=";
26     fetchSubmodules = true;
27   };
29   outputs = [ "out" "dev" ];
31   nativeBuildInputs = [
32     cmake
33     git
34     pkg-config
35   ];
37   buildInputs = [
38     gperf
39     libmicrohttpd
40     libsodium
41     openssl
42     readline
43     secp256k1
44     zlib
45   ];
47   passthru.updateScript = nix-update-script { };
49   meta = with lib; {
50     # The build fails on darwin as:
51     #   error: aligned allocation function of type 'void *(std::size_t, std::align_val_t)' is only available on macOS 10.13 or newer
52     broken = stdenv.isDarwin;
53     description = "A fully decentralized layer-1 blockchain designed by Telegram";
54     homepage = "https://ton.org/";
55     changelog = "https://github.com/ton-blockchain/ton/blob/v${version}/Changelog.md";
56     license = licenses.lgpl2Only;
57     platforms = platforms.all;
58     maintainers = with maintainers; [ misuzu ];
59   };