2017-03-06 09:15:10 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, boost, miniupnpc, openssl, pkgconfig, unbound }:
|
2014-09-15 20:31:15 +01:00
|
|
|
|
|
|
|
let
|
2017-05-15 14:34:17 +01:00
|
|
|
version = "0.10.3.1";
|
2014-09-15 20:31:15 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "monero-${version}";
|
|
|
|
|
2016-07-30 01:37:49 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "monero-project";
|
2017-01-17 00:28:39 +00:00
|
|
|
repo = "monero";
|
2016-07-30 01:37:49 +01:00
|
|
|
rev = "v${version}";
|
2017-05-15 14:34:17 +01:00
|
|
|
sha256 = "1x6qjqijdbjyfb0dcjn46gp38hkb419skxansf9w2cjf58c2055n";
|
2014-09-15 20:31:15 +01:00
|
|
|
};
|
|
|
|
|
2016-07-30 01:37:49 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
2017-03-06 09:15:10 +00:00
|
|
|
buildInputs = [ boost miniupnpc openssl unbound ];
|
2014-09-15 20:31:15 +01:00
|
|
|
|
|
|
|
# these tests take a long time and don't
|
|
|
|
# always complete in the build environment
|
|
|
|
postPatch = "sed -i '/add_subdirectory(tests)/d' CMakeLists.txt";
|
2014-11-28 17:40:19 +00:00
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=cpp";
|
|
|
|
|
2014-09-15 20:31:15 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
installPhase = ''
|
2015-12-05 12:59:05 +00:00
|
|
|
install -Dt "$out/bin/" \
|
2017-01-17 00:28:39 +00:00
|
|
|
bin/monerod \
|
|
|
|
bin/monero-blockchain-export \
|
|
|
|
bin/monero-blockchain-import \
|
|
|
|
bin/monero-utils-deserialize \
|
|
|
|
bin/monero-wallet-cli \
|
|
|
|
bin/monero-wallet-rpc
|
2014-09-15 20:31:15 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Private, secure, untraceable currency";
|
2017-01-17 00:28:39 +00:00
|
|
|
homepage = https://getmonero.org/;
|
2014-09-15 20:31:15 +01:00
|
|
|
license = licenses.bsd3;
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = [ maintainers.ehmry ];
|
2014-09-19 09:50:24 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2014-09-15 20:31:15 +01:00
|
|
|
};
|
2014-09-19 18:56:08 +01:00
|
|
|
}
|