Merge pull request #4978 from abbradar/bitcoin-fix

bitcoin(d): fix builing on hydra and with boost 1.56
This commit is contained in:
Michael Raskin 2014-11-14 00:19:08 +03:00
commit 113961c681

View file

@ -28,6 +28,8 @@ stdenv.mkDerivation rec {
HOME=$TMPDIR
'';
configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ];
doCheck = true;
enableParallelBuilding = true;
@ -45,5 +47,6 @@ stdenv.mkDerivation rec {
homepage = "http://www.bitcoin.org/";
maintainers = [ maintainers.roconnor ];
license = licenses.mit;
platforms = platforms.unix;
};
}