monero: 0.9.4 -> 0.10.1

This commit is contained in:
Kranium Gikos Mendoza 2017-01-17 08:28:39 +08:00 committed by Emery Hemingway
parent 922d0eb152
commit 518c3a00b2

View File

@ -1,16 +1,16 @@
{ stdenv, fetchFromGitHub, cmake, boost, miniupnpc, pkgconfig, unbound }: { stdenv, fetchFromGitHub, cmake, boost, miniupnpc, pkgconfig, unbound }:
let let
version = "0.9.4"; version = "0.10.1";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "monero-${version}"; name = "monero-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "monero-project"; owner = "monero-project";
repo = "bitmonero"; repo = "monero";
rev = "v${version}"; rev = "v${version}";
sha256 = "1qzpy1mxz0ky6hfk1gf67ybbr9xy6p6irh6zwri35h1gb97sbc3c"; sha256 = "1zngskpgxz3vqq348h0mab2kv95z6g9ckvqkr77mx15m5z3qi6aw";
}; };
nativeBuildInputs = [ cmake pkgconfig ]; nativeBuildInputs = [ cmake pkgconfig ];
@ -27,19 +27,17 @@ stdenv.mkDerivation {
installPhase = '' installPhase = ''
install -Dt "$out/bin/" \ install -Dt "$out/bin/" \
bin/bitmonerod \ bin/monerod \
bin/blockchain_converter \ bin/monero-blockchain-export \
bin/blockchain_dump \ bin/monero-blockchain-import \
bin/blockchain_export \ bin/monero-utils-deserialize \
bin/blockchain_import \ bin/monero-wallet-cli \
bin/cn_deserialize \ bin/monero-wallet-rpc
bin/simpleminer \
bin/simplewallet
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Private, secure, untraceable currency"; description = "Private, secure, untraceable currency";
homepage = http://monero.cc/; homepage = https://getmonero.org/;
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.ehmry ]; maintainers = [ maintainers.ehmry ];
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];