nixpkgs/pkgs/applications/altcoins/bitcoin-xt.nix

47 lines
1.7 KiB
Nix
Raw Normal View History

2017-03-20 21:20:37 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
2017-09-09 21:34:31 +00:00
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, curl, libevent
2015-08-20 01:38:10 +00:00
, withGui }:
with stdenv.lib;
stdenv.mkDerivation rec{
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-xt-" + version;
2017-09-09 21:34:31 +00:00
version = "0.11G2";
2015-08-20 01:38:10 +00:00
2017-03-20 21:20:37 +00:00
src = fetchFromGitHub {
owner = "bitcoinxt";
repo = "bitcoinxt";
rev = "v${version}";
2017-09-09 21:34:31 +00:00
sha256 = "071rljvsabyc9j64v248qfb7zfqpfl84hpsnvlavin235zljq8qs";
2015-08-20 01:38:10 +00:00
};
2017-03-20 21:20:37 +00:00
nativeBuildInputs = [ pkgconfig autoreconfHook ];
2017-09-09 21:34:31 +00:00
buildInputs = [ openssl db48 boost zlib libevent
2015-08-20 01:38:10 +00:00
miniupnpc utillinux protobuf curl ]
++ optionals withGui [ qt4 qrencode ];
configureFlags = [
"--with-boost-libdir=${boost.out}/lib"
"--with-libcurl-headers=${curl.dev}/include"
2015-08-20 01:38:10 +00:00
] ++ optionals withGui [ "--with-gui=qt4" ];
meta = {
description = "Peer-to-peer electronic cash system (XT client)";
2015-08-20 01:38:10 +00:00
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.
Bitcoin XT is an implementation of a Bitcoin full node, based upon the
source code of Bitcoin Core. It is built by taking the latest stable
Core release, applying a series of patches, and then doing deterministic
builds so anyone can check the downloads correspond to the source code.
2015-08-20 01:38:10 +00:00
'';
homepage = https://bitcoinxt.software/;
2015-08-20 01:38:10 +00:00
maintainers = with maintainers; [ jefdaj ];
license = licenses.mit;
platforms = platforms.unix;
};
}