2018-11-11 06:40:25 +00:00
|
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, git
|
2019-02-11 03:48:52 +00:00
|
|
|
|
, boost, miniupnpc_2, openssl, unbound, cppzmq
|
|
|
|
|
, zeromq, pcsclite, readline, libsodium, rapidjson
|
2018-11-11 06:40:25 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "wownero";
|
2018-11-11 06:40:25 +00:00
|
|
|
|
|
2019-06-04 01:02:52 +01:00
|
|
|
|
version = "0.6.1.2";
|
2018-11-11 06:40:25 +00:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "wownero";
|
|
|
|
|
repo = "wownero";
|
|
|
|
|
rev = "v${version}";
|
2019-06-04 01:02:52 +01:00
|
|
|
|
sha256 = "03q3pviyhrldpa3f4ly4d97jr39hvrz37chl102bap0790d9lk09";
|
|
|
|
|
fetchSubmodules = true;
|
2018-11-11 06:40:25 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig git ];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
2019-02-11 03:48:52 +00:00
|
|
|
|
boost miniupnpc_2 openssl unbound rapidjson
|
2018-11-11 06:40:25 +00:00
|
|
|
|
cppzmq zeromq pcsclite readline libsodium
|
2019-06-04 01:02:52 +01:00
|
|
|
|
];
|
2018-11-11 06:40:25 +00:00
|
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
|
"-DReadline_ROOT_DIR=${readline.dev}"
|
|
|
|
|
"-DMANUAL_SUBMODULES=ON"
|
2019-06-04 01:02:52 +01:00
|
|
|
|
];
|
2018-11-11 06:40:25 +00:00
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
description = "Wownero is a fork of the cryptocurrency Monero with primary alterations";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Wownero’s emission is capped and supply is finite. Wownero is a fairly
|
|
|
|
|
launched coin with no premine. It’s not a fork of another blockchain. With
|
|
|
|
|
its own genesis block there is no degradation of privacy caused by ring
|
|
|
|
|
signatures using different participants for the same transaction outputs.
|
|
|
|
|
Unlike opposing forks.
|
|
|
|
|
'';
|
|
|
|
|
homepage = http://wownero.org/;
|
|
|
|
|
license = licenses.bsd3;
|
2019-06-04 01:02:52 +01:00
|
|
|
|
platforms = platforms.linux;
|
2018-11-11 06:40:25 +00:00
|
|
|
|
maintainers = with maintainers; [ fuwa ];
|
|
|
|
|
};
|
|
|
|
|
}
|