wownero: 0.8.0.0 -> 0.8.0.1

gstqt5
fuwa 2020-07-10 15:00:13 +08:00
parent 8d05772134
commit 1666a51cab
1 changed files with 9 additions and 9 deletions

View File

@ -1,26 +1,26 @@
{ stdenv, fetchFromGitHub, cmake, boost, miniupnpc_2, openssl, unbound { stdenv, fetchgit, cmake, boost, miniupnpc_2, openssl, unbound
, readline, libsodium, rapidjson, fetchurl , readline, libsodium, rapidjson, fetchurl
}: }:
with stdenv.lib; with stdenv.lib;
let let
randomwowVersion = "1.1.6"; randomwowVersion = "1.1.7";
randomwow = fetchurl { randomwow = fetchurl {
url = "https://github.com/wownero/RandomWOW/archive/${randomwowVersion}.tar.gz"; url = "https://github.com/wownero/RandomWOW/archive/${randomwowVersion}.tar.gz";
sha256 = "1c55y2dwrayh6k1avpchs89gq1mvy5c305h92jm2k48kzhw6a792"; sha256 = "1xp76zf01hnhnk6rjvqjav9n9pnvxzxlzqa5rc574d1c2qczfy3q";
}; };
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "wownero"; pname = "wownero";
version = "0.8.0.0"; version = "0.8.0.1";
src = fetchFromGitHub { src = fetchgit {
owner = "wownero"; url = "https://git.wownero.com/wownero/wownero.git";
repo = "wownero"; rev = "v${version}";
rev = "v${version}"; sha256 = "15443xv6q1nw4627ajk6k4ghhahvh82lb4gyb8nvq753p2v838g3";
sha256 = "14nggivilgzaqhjd4ng3g2p884yp2hc322hpcpwjdnz2zfc3qq6c"; fetchSubmodules = false;
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];