bitcoin-xt: update 0.11A -> 0.11D
From #12706, commits re-split by vcunat.
This commit is contained in:
parent
98a0484471
commit
127edf1194
|
@ -6,12 +6,11 @@ with stdenv.lib;
|
||||||
stdenv.mkDerivation rec{
|
stdenv.mkDerivation rec{
|
||||||
|
|
||||||
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-xt-" + version;
|
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-xt-" + version;
|
||||||
xt_version = "0.11A";
|
version = "0.11D";
|
||||||
version = xt_version;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/bitcoinxt/bitcoinxt/archive/v0.11A.tar.gz";
|
url = "https://github.com/bitcoinxt/bitcoinxt/archive/v${version}.tar.gz";
|
||||||
sha256 = "129cbqf6bln6rhdk70c6nfwdjk6afvsaaw4xdyp0pnfand8idz7n";
|
sha256 = "09r2i88wzqaj6mh66l3ngyfkm1a0dhwm5ibalj6y55wbxm9bvd36";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig autoreconfHook openssl db48 boost zlib
|
buildInputs = [ pkgconfig autoreconfHook openssl db48 boost zlib
|
||||||
|
@ -24,8 +23,13 @@ stdenv.mkDerivation rec{
|
||||||
] ++ optionals withGui [ "--with-gui=qt4" ];
|
] ++ optionals withGui [ "--with-gui=qt4" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Peer-to-peer electronic cash system";
|
description = "Peer-to-peer electronic cash system (XT client)";
|
||||||
longDescription= ''
|
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
|
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
|
source code of Bitcoin Core. It is built by taking the latest stable
|
||||||
Core release, applying a series of patches, and then doing deterministic
|
Core release, applying a series of patches, and then doing deterministic
|
||||||
|
|
Loading…
Reference in New Issue