wownero: 0.6.1.2 -> 0.7.0

This commit is contained in:
fuwa 2019-11-12 12:46:02 +08:00 committed by Jon
parent 00bbd07152
commit 2bb10a525d

View File

@ -1,27 +1,25 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, git { stdenv, fetchFromGitHub, cmake, boost, miniupnpc_2, openssl, unbound
, boost, miniupnpc_2, openssl, unbound, cppzmq , readline, libsodium, rapidjson
, zeromq, pcsclite, readline, libsodium, rapidjson
}: }:
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "wownero"; pname = "wownero";
version = "0.7.0";
version = "0.6.1.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wownero"; owner = "wownero";
repo = "wownero"; repo = "wownero";
rev = "v${version}"; rev = "v${version}";
sha256 = "03q3pviyhrldpa3f4ly4d97jr39hvrz37chl102bap0790d9lk09"; sha256 = "0lji24s6346qxcj4pmylv8byb8fnqzpmz81rx4i3zhc1bcsvdwas";
fetchSubmodules = true; fetchSubmodules = true;
}; };
nativeBuildInputs = [ cmake pkgconfig git ]; nativeBuildInputs = [ cmake ];
buildInputs = [ buildInputs = [
boost miniupnpc_2 openssl unbound rapidjson boost miniupnpc_2 openssl unbound rapidjson readline libsodium
cppzmq zeromq pcsclite readline libsodium
]; ];
cmakeFlags = [ cmakeFlags = [
@ -30,13 +28,16 @@ stdenv.mkDerivation rec {
]; ];
meta = { meta = {
description = "Wownero is a fork of the cryptocurrency Monero with primary alterations"; description = ''
A privacy-centric memecoin that was fairly launched on April 1, 2018 with
no pre-mine, stealth-mine or ICO
'';
longDescription = '' longDescription = ''
Wowneros emission is capped and supply is finite. Wownero is a fairly Wownero has a maximum supply of around 184 million WOW with a slow and
launched coin with no premine. Its not a fork of another blockchain. With steady emission over 50 years. It is a fork of Monero, but with its own
its own genesis block there is no degradation of privacy caused by ring genesis block, so there is no degradation of privacy due to ring
signatures using different participants for the same transaction outputs. signatures using different participants for the same tx outputs on
Unlike opposing forks. opposing forks.
''; '';
homepage = http://wownero.org/; homepage = http://wownero.org/;
license = licenses.bsd3; license = licenses.bsd3;