From 34b41d0c7400498690f931077f1fbac14fe22438 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sat, 17 Feb 2024 11:36:29 +0000 Subject: [PATCH] aeon: mark broken No development upstream for past few years. Fails to build against `gcc-13` on `master` as https://hydra.nixos.org/build/249045599: In file included from /build/source/src/common/combinator.cpp:31: /build/source/src/common/combinator.h:38:1: error: 'uint64_t' does not name a type 38 | uint64_t combinations_count(uint32_t k, uint32_t n); | ^~~~~~~~ --- pkgs/applications/blockchains/aeon/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/blockchains/aeon/default.nix b/pkgs/applications/blockchains/aeon/default.nix index 7928a63b8264..3939dbce3157 100644 --- a/pkgs/applications/blockchains/aeon/default.nix +++ b/pkgs/applications/blockchains/aeon/default.nix @@ -33,6 +33,9 @@ stdenv.mkDerivation { hardeningDisable = [ "fortify" ]; meta = with lib; { + # Does not build against gcc-13. No development activity upstream + # for past few years. + broken = true; description = "Private, secure, untraceable currency"; homepage = "http://www.aeon.cash/"; license = licenses.bsd3;