nixpkgs/pkgs/applications/blockchains/bitcoin-abc.nix

53 lines
1.6 KiB
Nix
Raw Normal View History

2020-07-07 22:48:52 +02:00
{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, cmake, openssl, db53, boost
, zlib, miniupnpc, qtbase ? null , qttools ? null, utillinux, protobuf, qrencode, libevent
2020-07-07 22:48:52 +02:00
, withGui, python3, jemalloc, zeromq4 }:
2017-09-27 17:32:12 +02:00
with stdenv.lib;
2019-12-02 23:22:03 +01:00
mkDerivation rec {
2017-09-27 17:32:12 +02:00
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-abc-" + version;
2020-07-07 22:48:52 +02:00
version = "0.21.10";
2017-09-27 17:32:12 +02:00
src = fetchFromGitHub {
owner = "bitcoin-ABC";
repo = "bitcoin-abc";
rev = "v${version}";
2020-07-07 22:48:52 +02:00
sha256 = "1m210g6db8f09m66v75ia1fdd1dlvs1srgk2jhd3wqbvnmjqa77f";
2017-09-27 17:32:12 +02:00
};
2017-09-28 00:13:31 +02:00
patches = [ ./fix-bitcoin-qt-build.patch ];
2020-07-07 22:48:52 +02:00
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ openssl db53 boost zlib python3 jemalloc zeromq4
2017-09-27 17:32:12 +02:00
miniupnpc utillinux protobuf libevent ]
++ optionals withGui [ qtbase qttools qrencode ];
2017-09-27 17:32:12 +02:00
2020-07-07 22:48:52 +02:00
cmakeFlags = optionals (!withGui) [
"-DBUILD_BITCOIN_QT=OFF"
];
# many of the generated scripts lack execute permissions
postConfigure = ''
find ./. -type f -iname "*.sh" -exec chmod +x {} \;
'';
2017-09-27 17:32:12 +02:00
enableParallelBuilding = true;
2017-09-27 17:32:12 +02:00
meta = {
description = "Peer-to-peer electronic cash system (Cash client)";
longDescription= ''
Bitcoin ABC is the name of open source software which enables the use of Bitcoin.
It is designed to facilite a hard fork to increase Bitcoin's block size limit.
"ABC" stands for "Adjustable Blocksize Cap".
Bitcoin ABC is a fork of the Bitcoin Core software project.
'';
2020-03-04 02:03:10 +01:00
homepage = "https://bitcoinabc.org/";
2017-09-27 17:32:12 +02:00
maintainers = with maintainers; [ lassulus ];
license = licenses.mit;
broken = stdenv.isDarwin;
2017-09-27 17:32:12 +02:00
platforms = platforms.unix;
};
}