nixpkgs/pkgs/applications/blockchains/aeon/default.nix
Sergei Trofimovich 34b41d0c74 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);
          | ^~~~~~~~
2024-02-17 11:36:29 +00:00

46 lines
1.1 KiB
Nix

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, git, doxygen, graphviz
, boost, miniupnpc, openssl, unbound, cppzmq
, pcsclite, readline, libsodium
}:
let
version = "0.14.2.2";
in
stdenv.mkDerivation {
pname = "aeon";
inherit version;
src = fetchFromGitHub {
owner = "aeonix";
repo = "aeon";
rev = "v${version}-aeon";
fetchSubmodules = true;
sha256 = "sha256-2MptLS12CUm9eUKm+V+yYpbLVwNyZeZ5HvAFyjEc4R4=";
};
nativeBuildInputs = [ cmake pkg-config git doxygen graphviz ];
buildInputs = [
boost miniupnpc openssl unbound
cppzmq pcsclite readline libsodium
];
cmakeFlags = [
"-DBUILD_GUI_DEPS=ON"
"-DReadline_ROOT_DIR=${readline.dev}"
];
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;
maintainers = [ maintainers.aij ];
platforms = [ "x86_64-linux" ];
};
}