2017-11-13 20:30:24 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, autoreconfHook, openssl, db48, boost, zeromq
|
2018-10-04 03:51:53 +01:00
|
|
|
, zlib, miniupnpc, qtbase ? null, qttools ? null, utillinux, protobuf, python3, qrencode, libevent
|
2014-11-30 13:13:47 +00:00
|
|
|
, withGui }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec{
|
|
|
|
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-" + version;
|
2018-10-03 19:43:14 +01:00
|
|
|
version = "0.17.0";
|
2014-11-30 13:13:47 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-11-13 20:30:24 +00:00
|
|
|
urls = [ "https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"
|
|
|
|
"https://bitcoin.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"
|
|
|
|
];
|
2018-10-03 19:43:14 +01:00
|
|
|
sha256 = "0pkq28d2dj22qrxyyg9kh0whmhj7ghyabnhyqldbljv4a7l3kvwq";
|
2014-11-30 13:13:47 +00:00
|
|
|
};
|
|
|
|
|
2018-10-04 03:51:53 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ]
|
|
|
|
++ optionals doCheck [ python3 ];
|
2017-11-13 20:30:24 +00:00
|
|
|
buildInputs = [ openssl db48 boost zlib zeromq
|
2016-02-24 12:21:53 +00:00
|
|
|
miniupnpc protobuf libevent]
|
2015-11-24 10:59:39 +00:00
|
|
|
++ optionals stdenv.isLinux [ utillinux ]
|
2017-11-13 20:30:24 +00:00
|
|
|
++ optionals withGui [ qtbase qttools qrencode ];
|
2014-11-30 13:13:47 +00:00
|
|
|
|
2018-09-24 04:00:13 +01:00
|
|
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib"
|
|
|
|
"--disable-bench"
|
2018-09-25 07:31:45 +01:00
|
|
|
] ++ optionals (!doCheck) [
|
2018-09-24 04:00:13 +01:00
|
|
|
"--disable-tests"
|
|
|
|
"--disable-gui-tests"
|
|
|
|
]
|
2017-11-13 20:30:24 +00:00
|
|
|
++ optionals withGui [ "--with-gui=qt5"
|
|
|
|
"--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"
|
|
|
|
];
|
2014-11-30 13:13:47 +00:00
|
|
|
|
2018-10-04 03:51:53 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
# QT_PLUGIN_PATH needs to be set when executing QT, which is needed when testing Bitcoin's GUI.
|
|
|
|
# See also https://github.com/NixOS/nixpkgs/issues/24256
|
|
|
|
checkFlags = optionals withGui [ "QT_PLUGIN_PATH=${qtbase}/lib/qt-5.${versions.minor qtbase.version}/plugins" ];
|
2018-04-25 04:20:18 +01:00
|
|
|
|
2018-09-24 04:01:45 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-11-30 13:13:47 +00:00
|
|
|
meta = {
|
|
|
|
description = "Peer-to-peer electronic cash system";
|
|
|
|
longDescription= ''
|
|
|
|
Bitcoin is a free open source peer-to-peer electronic cash system that is
|
|
|
|
completely decentralized, without the need for a central server or trusted
|
|
|
|
parties. Users hold the crypto keys to their own money and transact directly
|
|
|
|
with each other, with the help of a P2P network to check for double-spending.
|
|
|
|
'';
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.bitcoin.org/;
|
2014-11-30 13:13:47 +00:00
|
|
|
maintainers = with maintainers; [ roconnor AndersonTorres ];
|
|
|
|
license = licenses.mit;
|
2018-03-01 16:21:18 +00:00
|
|
|
# bitcoin needs hexdump to build, which doesn't seem to build on darwin at the moment.
|
|
|
|
platforms = platforms.linux;
|
2014-11-30 13:13:47 +00:00
|
|
|
};
|
|
|
|
}
|