mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
bbf113f24a
From #12706, commits re-split by vcunat.
44 lines
1.8 KiB
Nix
44 lines
1.8 KiB
Nix
{ stdenv, fetchurl, pkgconfig, autoreconfHook, openssl, db48, boost
|
||
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode
|
||
, withGui }:
|
||
|
||
with stdenv.lib;
|
||
stdenv.mkDerivation rec {
|
||
|
||
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-classic-" + version;
|
||
version = "0.11.2.cl1.b1";
|
||
|
||
src = fetchurl {
|
||
url = "https://github.com/bitcoinclassic/bitcoinclassic/archive/v${version}.tar.gz";
|
||
sha256 = "1szsnx5aijk3hx7qkqzbqsr0basg8ydwp20mh3bhnf4ljryy2049";
|
||
};
|
||
|
||
buildInputs = [ pkgconfig autoreconfHook openssl db48 boost zlib
|
||
miniupnpc utillinux protobuf ]
|
||
++ optionals withGui [ qt4 qrencode ];
|
||
|
||
configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ]
|
||
++ optionals withGui [ "--with-gui=qt4" ];
|
||
|
||
meta = {
|
||
description = "Peer-to-peer electronic cash system (Classic client)";
|
||
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.
|
||
|
||
We call our code repository Bitcoin Classic. It starts as a one-feature patch
|
||
to bitcoin-core that increases the blocksize limit to 2 MB. We will have
|
||
ports for master and 0.11.2, so that miners and businesses can upgrade to 2 MB
|
||
blocks from any recent bitcoin software version they run. In the future we will
|
||
continue to release updates that are in line with Satoshi’s whitepaper &
|
||
vision, and are agreed upon by the community.
|
||
'';
|
||
homepage = "https://bitcoinclassic.com/";
|
||
maintainers = with maintainers; [ jefdaj ];
|
||
license = licenses.mit;
|
||
platforms = platforms.unix;
|
||
};
|
||
}
|