17 miniupnp = fetchFromGitHub {
20 rev = "miniupnpc_2_2_1";
21 hash = "sha256-opd0hcZV+pjC3Mae3Yf6AR5fj6xVwGm9LuU5zEPxBKc=";
23 supercop = fetchFromGitHub {
24 owner = "monero-project";
26 rev = "633500ad8c8759995049ccd022107d1fa8a1bbc9";
27 hash = "sha256-26UmESotSWnQ21VbAYEappLpkEMyl0jiuCaezRYd/sE=";
29 randomwow = fetchFromGitHub {
30 owner = "wownero-project";
32 rev = "607bad48f3687c2490d90f8c55efa2dcd7cbc195";
33 hash = "sha256-CJv96TbPv1k/C7MQWEntE6khIRX1iIEiF9wEdsQGiFQ=";
36 stdenv.mkDerivation rec {
40 src = fetchFromGitHub {
41 owner = "wownero-project";
44 fetchSubmodules = false;
45 hash = "sha256-zmGsSbPpVwL0AhCQkdMKORruM5kYrrLe/BYfMphph8c=";
60 ] ++ lib.optionals stdenv.isDarwin [
61 darwin.apple_sdk.frameworks.IOKit
65 rm -r $sourceRoot/external/miniupnp
66 ln -s ${miniupnp} $sourceRoot/external/miniupnp
68 rm -r $sourceRoot/external/randomwow
69 ln -s ${randomwow} $sourceRoot/external/randomwow
71 rm -r $sourceRoot/external/supercop
72 ln -s ${supercop} $sourceRoot/external/supercop
76 "-DReadline_ROOT_DIR=${readline.dev}"
77 "-DMANUAL_SUBMODULES=ON"
82 A privacy-centric memecoin that was fairly launched on April 1, 2018 with
83 no pre-mine, stealth-mine or ICO
86 Wownero has a maximum supply of around 184 million WOW with a slow and
87 steady emission over 50 years. It is a fork of Monero, but with its own
88 genesis block, so there is no degradation of privacy due to ring
89 signatures using different participants for the same tx outputs on
92 homepage = "https://wownero.org/";
93 license = licenses.bsd3;
94 maintainers = with maintainers; [ ];
95 platforms = platforms.unix;