18 miniupnp = fetchFromGitHub {
21 rev = "miniupnpc_2_2_1";
22 hash = "sha256-opd0hcZV+pjC3Mae3Yf6AR5fj6xVwGm9LuU5zEPxBKc=";
24 supercop = fetchFromGitHub {
25 owner = "monero-project";
27 rev = "633500ad8c8759995049ccd022107d1fa8a1bbc9";
28 hash = "sha256-26UmESotSWnQ21VbAYEappLpkEMyl0jiuCaezRYd/sE=";
30 randomwow = fetchFromGitHub {
31 owner = "wownero-project";
33 rev = "607bad48f3687c2490d90f8c55efa2dcd7cbc195";
34 hash = "sha256-CJv96TbPv1k/C7MQWEntE6khIRX1iIEiF9wEdsQGiFQ=";
37 stdenv.mkDerivation rec {
41 src = fetchFromGitHub {
42 owner = "wownero-project";
45 fetchSubmodules = false;
46 hash = "sha256-zmGsSbPpVwL0AhCQkdMKORruM5kYrrLe/BYfMphph8c=";
50 # Fix gcc-13 build due to missing <cstdint> neaders
52 name = "gcc-13.patch";
53 url = "https://git.wownero.com/wownero/wownero/commit/f983ac77805a494ea4a05a00398c553e1359aefd.patch";
54 hash = "sha256-9acQ4bHAKFR+lMgrpQyBmb+9YZYi1ywHoo1jBcIgmGs=";
70 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
71 darwin.apple_sdk.frameworks.IOKit
75 rm -r $sourceRoot/external/miniupnp
76 ln -s ${miniupnp} $sourceRoot/external/miniupnp
78 rm -r $sourceRoot/external/randomwow
79 ln -s ${randomwow} $sourceRoot/external/randomwow
81 rm -r $sourceRoot/external/supercop
82 ln -s ${supercop} $sourceRoot/external/supercop
86 "-DReadline_ROOT_DIR=${readline.dev}"
87 "-DMANUAL_SUBMODULES=ON"
92 A privacy-centric memecoin that was fairly launched on April 1, 2018 with
93 no pre-mine, stealth-mine or ICO
96 Wownero has a maximum supply of around 184 million WOW with a slow and
97 steady emission over 50 years. It is a fork of Monero, but with its own
98 genesis block, so there is no degradation of privacy due to ring
99 signatures using different participants for the same tx outputs on
102 homepage = "https://wownero.org/";
103 license = licenses.bsd3;
105 platforms = platforms.unix;