monero: 0.10.1 -> 0.10.2.1

This commit is contained in:
Kranium Gikos Mendoza 2017-03-06 20:15:10 +11:00
parent 82fda65c8a
commit e43fc06012

View File

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, cmake, boost, miniupnpc, pkgconfig, unbound }: { stdenv, fetchFromGitHub, cmake, boost, miniupnpc, openssl, pkgconfig, unbound }:
let let
version = "0.10.1"; version = "0.10.2.1";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "monero-${version}"; name = "monero-${version}";
@ -10,12 +10,12 @@ stdenv.mkDerivation {
owner = "monero-project"; owner = "monero-project";
repo = "monero"; repo = "monero";
rev = "v${version}"; rev = "v${version}";
sha256 = "1zngskpgxz3vqq348h0mab2kv95z6g9ckvqkr77mx15m5z3qi6aw"; sha256 = "0jr57lih3smdg4abglfyfhxp69akiyqy889gcpdplwl05vfnhand";
}; };
nativeBuildInputs = [ cmake pkgconfig ]; nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ boost miniupnpc unbound ]; buildInputs = [ boost miniupnpc openssl unbound ];
# these tests take a long time and don't # these tests take a long time and don't
# always complete in the build environment # always complete in the build environment