Merge pull request #39310 from Mic92/bitcoin-fixes
bitcoin-{unlimited,xt}: fix darwin
This commit is contained in:
commit
d52e5da785
@ -1,6 +1,7 @@
|
|||||||
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
|
||||||
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, libevent
|
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, libevent
|
||||||
, withGui }:
|
, withGui
|
||||||
|
, Foundation, ApplicationServices, AppKit }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
@ -19,7 +20,8 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
buildInputs = [ openssl db48 boost zlib
|
buildInputs = [ openssl db48 boost zlib
|
||||||
miniupnpc utillinux protobuf libevent ]
|
miniupnpc utillinux protobuf libevent ]
|
||||||
++ optionals withGui [ qt4 qrencode ];
|
++ optionals withGui [ qt4 qrencode ]
|
||||||
|
++ optionals stdenv.isDarwin [ Foundation ApplicationServices AppKit ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./bitcoin-unlimited-const-comparators.patch
|
./bitcoin-unlimited-const-comparators.patch
|
||||||
@ -36,7 +38,7 @@ stdenv.mkDerivation rec {
|
|||||||
completely decentralized, without the need for a central server or trusted
|
completely decentralized, without the need for a central server or trusted
|
||||||
parties. Users hold the crypto keys to their own money and transact directly
|
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.
|
with each other, with the help of a P2P network to check for double-spending.
|
||||||
|
|
||||||
The Bitcoin Unlimited (BU) project seeks to provide a voice to all
|
The Bitcoin Unlimited (BU) project seeks to provide a voice to all
|
||||||
stakeholders in the Bitcoin ecosystem.
|
stakeholders in the Bitcoin ecosystem.
|
||||||
|
|
||||||
@ -55,7 +57,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
If you support an increase in the blocksize limit by any means - or just
|
If you support an increase in the blocksize limit by any means - or just
|
||||||
support Bitcoin conflict resolution as originally envisioned by its founder -
|
support Bitcoin conflict resolution as originally envisioned by its founder -
|
||||||
consider running a Bitcoin Unlimited client.
|
consider running a Bitcoin Unlimited client.
|
||||||
'';
|
'';
|
||||||
homepage = https://www.bitcoinunlimited.info/;
|
homepage = https://www.bitcoinunlimited.info/;
|
||||||
maintainers = with maintainers; [ DmitryTsygankov ];
|
maintainers = with maintainers; [ DmitryTsygankov ];
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, openssl, db48, boost
|
||||||
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, curl, libevent
|
, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, curl, libevent
|
||||||
, withGui }:
|
, withGui
|
||||||
|
, Foundation, ApplicationServices, AppKit }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec{
|
stdenv.mkDerivation rec{
|
||||||
@ -18,7 +19,8 @@ stdenv.mkDerivation rec{
|
|||||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
buildInputs = [ openssl db48 boost zlib libevent
|
buildInputs = [ openssl db48 boost zlib libevent
|
||||||
miniupnpc utillinux protobuf curl ]
|
miniupnpc utillinux protobuf curl ]
|
||||||
++ optionals withGui [ qt4 qrencode ];
|
++ optionals withGui [ qt4 qrencode ]
|
||||||
|
++ optionals stdenv.isDarwin [ Foundation ApplicationServices AppKit ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-boost-libdir=${boost.out}/lib"
|
"--with-boost-libdir=${boost.out}/lib"
|
||||||
@ -36,7 +38,7 @@ stdenv.mkDerivation rec{
|
|||||||
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
|
||||||
builds so anyone can check the downloads correspond to the source code.
|
builds so anyone can check the downloads correspond to the source code.
|
||||||
'';
|
'';
|
||||||
homepage = https://bitcoinxt.software/;
|
homepage = https://bitcoinxt.software/;
|
||||||
maintainers = with maintainers; [ jefdaj ];
|
maintainers = with maintainers; [ jefdaj ];
|
||||||
|
@ -10,14 +10,26 @@ rec {
|
|||||||
bitcoin-abc = libsForQt5.callPackage ./bitcoin-abc.nix { boost = boost165; withGui = true; };
|
bitcoin-abc = libsForQt5.callPackage ./bitcoin-abc.nix { boost = boost165; withGui = true; };
|
||||||
bitcoind-abc = callPackage ./bitcoin-abc.nix { boost = boost165; withGui = false; };
|
bitcoind-abc = callPackage ./bitcoin-abc.nix { boost = boost165; withGui = false; };
|
||||||
|
|
||||||
bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = true; };
|
bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix {
|
||||||
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = false; };
|
inherit (darwin.apple_sdk.frameworks) Foundation ApplicationServices AppKit;
|
||||||
|
withGui = true;
|
||||||
|
};
|
||||||
|
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Foundation ApplicationServices AppKit;
|
||||||
|
withGui = false;
|
||||||
|
};
|
||||||
|
|
||||||
bitcoin-classic = libsForQt5.callPackage ./bitcoin-classic.nix { boost = boost165; withGui = true; };
|
bitcoin-classic = libsForQt5.callPackage ./bitcoin-classic.nix { boost = boost165; withGui = true; };
|
||||||
bitcoind-classic = callPackage ./bitcoin-classic.nix { boost = boost165; withGui = false; };
|
bitcoind-classic = callPackage ./bitcoin-classic.nix { boost = boost165; withGui = false; };
|
||||||
|
|
||||||
bitcoin-xt = callPackage ./bitcoin-xt.nix { boost = boost165; withGui = true; };
|
bitcoin-xt = callPackage ./bitcoin-xt.nix {
|
||||||
bitcoind-xt = callPackage ./bitcoin-xt.nix { boost = boost165; withGui = false; };
|
inherit (darwin.apple_sdk.frameworks) Foundation ApplicationServices AppKit;
|
||||||
|
boost = boost165; withGui = true;
|
||||||
|
};
|
||||||
|
bitcoind-xt = callPackage ./bitcoin-xt.nix {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Foundation ApplicationServices AppKit;
|
||||||
|
boost = boost165; withGui = false;
|
||||||
|
};
|
||||||
|
|
||||||
btc1 = callPackage ./btc1.nix { boost = boost165; withGui = true; };
|
btc1 = callPackage ./btc1.nix { boost = boost165; withGui = true; };
|
||||||
btc1d = callPackage ./btc1.nix { boost = boost165; withGui = false; };
|
btc1d = callPackage ./btc1.nix { boost = boost165; withGui = false; };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user