2014-09-15 20:31:15 +01:00
|
|
|
{ stdenv, fetchurl, cmake, boost }:
|
|
|
|
|
|
|
|
let
|
|
|
|
version = "0.8.8.4";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "monero-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/monero-project/bitmonero/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "0bbhqjjzh922aymjqrnl2hd3r8x6p7x5aa5jidv3l4d77drhlgzy";
|
|
|
|
};
|
|
|
|
|
2014-10-01 20:55:40 +01:00
|
|
|
buildInputs = [ cmake boost ];
|
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;
|
|
|
|
checkTarget = "test-release"; # this would be the target
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
installBin \
|
|
|
|
src/bitmonerod \
|
|
|
|
src/connectivity_tool \
|
|
|
|
src/simpleminer \
|
|
|
|
src/simplewallet
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Private, secure, untraceable currency";
|
|
|
|
homepage = http://monero.cc/;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.emery ];
|
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
|
|
|
}
|