2021-07-27 14:24:40 +01:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, pkg-config
|
|
|
|
|
, autoreconfHook
|
|
|
|
|
, openssl
|
|
|
|
|
, db48
|
|
|
|
|
, boost
|
|
|
|
|
, zlib
|
|
|
|
|
, miniupnpc
|
|
|
|
|
, qtbase ? null
|
|
|
|
|
, qttools ? null
|
|
|
|
|
, util-linux
|
|
|
|
|
, protobuf
|
|
|
|
|
, qrencode
|
|
|
|
|
, libevent
|
|
|
|
|
, withGui
|
|
|
|
|
}:
|
2017-03-07 00:58:09 +00:00
|
|
|
|
|
2016-02-27 12:44:45 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-27 14:24:40 +01:00
|
|
|
|
pname = "bitcoin" + lib.optionalString (!withGui) "d" + "-classic";
|
2021-01-18 11:00:43 +00:00
|
|
|
|
version = "1.3.8uahf";
|
2016-02-27 12:44:45 +00:00
|
|
|
|
|
2017-03-07 00:58:09 +00:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "bitcoinclassic";
|
|
|
|
|
repo = "bitcoinclassic";
|
|
|
|
|
rev = "v${version}";
|
2022-01-04 06:27:08 +00:00
|
|
|
|
sha256 = "sha256-fVmFD1B4kKoejd2cmPPF5TJJQTAA6AVsGlVY8IIUNK4=";
|
2016-02-27 12:44:45 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
2021-07-27 14:24:40 +01:00
|
|
|
|
buildInputs = [
|
|
|
|
|
openssl
|
|
|
|
|
db48
|
|
|
|
|
boost
|
|
|
|
|
zlib
|
|
|
|
|
miniupnpc
|
|
|
|
|
util-linux
|
|
|
|
|
protobuf
|
|
|
|
|
libevent
|
|
|
|
|
] ++ lib.optionals withGui [ qtbase qttools qrencode ];
|
2016-02-27 12:44:45 +00:00
|
|
|
|
|
2016-04-27 22:41:28 +01:00
|
|
|
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]
|
2021-07-27 14:24:40 +01:00
|
|
|
|
++ lib.optionals withGui [
|
|
|
|
|
"--with-gui=qt5"
|
|
|
|
|
"--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"
|
|
|
|
|
];
|
2016-02-27 12:44:45 +00:00
|
|
|
|
|
2018-09-25 12:33:20 +01:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2021-01-12 11:50:23 +00:00
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
|
2021-07-27 14:24:40 +01:00
|
|
|
|
meta = with lib; {
|
2016-02-27 12:44:45 +00:00
|
|
|
|
description = "Peer-to-peer electronic cash system (Classic client)";
|
2021-07-27 14:24:40 +01:00
|
|
|
|
longDescription = ''
|
2016-02-27 12:44:45 +00:00
|
|
|
|
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-06-18 09:29:46 +01:00
|
|
|
|
Bitcoin Classic stands for the original Bitcoin as Satoshi described it,
|
|
|
|
|
"A Peer-to-Peer Electronic Cash System". We are writing the software that
|
2017-05-10 06:22:35 +01:00
|
|
|
|
miners and users say they want. We will make sure it solves their needs, help
|
2017-06-18 09:29:46 +01:00
|
|
|
|
them deploy it, and gracefully upgrade the bitcoin network's capacity
|
2017-05-10 06:22:35 +01:00
|
|
|
|
together. The data shows that Bitcoin can grow, on-chain, to welcome many
|
2017-06-18 09:29:46 +01:00
|
|
|
|
more users onto our coin in a safe and distributed manner. In the future we
|
2017-05-10 06:22:35 +01:00
|
|
|
|
will continue to release updates that are in line with Satoshi’s whitepaper &
|
2016-02-27 12:44:45 +00:00
|
|
|
|
vision, and are agreed upon by the community.
|
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://bitcoinclassic.com/";
|
2016-02-27 12:44:45 +00:00
|
|
|
|
maintainers = with maintainers; [ jefdaj ];
|
|
|
|
|
license = licenses.mit;
|
2018-09-12 19:58:23 +01:00
|
|
|
|
broken = stdenv.isDarwin;
|
2016-02-27 12:44:45 +00:00
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
};
|
|
|
|
|
}
|