Merge pull request #202664 from rnhmjoj/pr-bitcoin-cleanup
Bitcoin forks cleanup
This commit is contained in:
commit
812a5d6652
6 changed files with 16 additions and 185 deletions
|
@ -1,78 +0,0 @@
|
||||||
{ lib
|
|
||||||
, stdenv
|
|
||||||
, fetchFromGitHub
|
|
||||||
, pkg-config
|
|
||||||
, autoreconfHook
|
|
||||||
, openssl
|
|
||||||
, db48
|
|
||||||
, boost
|
|
||||||
, zlib
|
|
||||||
, miniupnpc
|
|
||||||
, qtbase ? null
|
|
||||||
, qttools ? null
|
|
||||||
, util-linux
|
|
||||||
, protobuf
|
|
||||||
, qrencode
|
|
||||||
, libevent
|
|
||||||
, withGui
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "bitcoin" + lib.optionalString (!withGui) "d" + "-classic";
|
|
||||||
version = "1.3.8uahf";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "bitcoinclassic";
|
|
||||||
repo = "bitcoinclassic";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "sha256-fVmFD1B4kKoejd2cmPPF5TJJQTAA6AVsGlVY8IIUNK4=";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
||||||
buildInputs = [
|
|
||||||
openssl
|
|
||||||
db48
|
|
||||||
boost
|
|
||||||
zlib
|
|
||||||
miniupnpc
|
|
||||||
util-linux
|
|
||||||
protobuf
|
|
||||||
libevent
|
|
||||||
] ++ lib.optionals withGui [ qtbase qttools qrencode ];
|
|
||||||
|
|
||||||
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]
|
|
||||||
++ lib.optionals withGui [
|
|
||||||
"--with-gui=qt5"
|
|
||||||
"--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"
|
|
||||||
];
|
|
||||||
|
|
||||||
CXXFLAGS = [ "-std=c++14" ];
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
dontWrapQtApps = true;
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
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.
|
|
||||||
|
|
||||||
Bitcoin Classic stands for the original Bitcoin as Satoshi described it,
|
|
||||||
"A Peer-to-Peer Electronic Cash System". We are writing the software that
|
|
||||||
miners and users say they want. We will make sure it solves their needs, help
|
|
||||||
them deploy it, and gracefully upgrade the bitcoin network's capacity
|
|
||||||
together. The data shows that Bitcoin can grow, on-chain, to welcome many
|
|
||||||
more users onto our coin in a safe and distributed manner. 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;
|
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
platforms = platforms.unix;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,72 +0,0 @@
|
||||||
{ lib, stdenv
|
|
||||||
, fetchFromGitHub
|
|
||||||
, openssl
|
|
||||||
, boost
|
|
||||||
, libb2
|
|
||||||
, libevent
|
|
||||||
, autoreconfHook
|
|
||||||
, db4
|
|
||||||
, pkg-config
|
|
||||||
, protobuf
|
|
||||||
, hexdump
|
|
||||||
, zeromq
|
|
||||||
, libsodium
|
|
||||||
, withGui
|
|
||||||
, qtbase ? null
|
|
||||||
, qttools ? null
|
|
||||||
, wrapQtAppsHook ? null
|
|
||||||
}:
|
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
|
|
||||||
pname = "bitcoin" + toString (optional (!withGui) "d") + "-gold";
|
|
||||||
version = "0.17.3";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "BTCGPU";
|
|
||||||
repo = "BTCGPU";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "sha256-1tFoUNsCPJkHSmNRl5gE3n2EQD6RZSry1zIM5hiTzEI=";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
autoreconfHook
|
|
||||||
pkg-config
|
|
||||||
hexdump
|
|
||||||
] ++ optionals withGui [
|
|
||||||
wrapQtAppsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
openssl
|
|
||||||
boost
|
|
||||||
libevent
|
|
||||||
db4
|
|
||||||
zeromq
|
|
||||||
libsodium
|
|
||||||
libb2
|
|
||||||
] ++ optionals withGui [
|
|
||||||
qtbase
|
|
||||||
qttools
|
|
||||||
protobuf
|
|
||||||
];
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
configureFlags = [
|
|
||||||
"--with-boost-libdir=${boost.out}/lib"
|
|
||||||
] ++ optionals withGui [
|
|
||||||
"--with-gui=qt5"
|
|
||||||
"--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "BTG is a cryptocurrency with Bitcoin fundamentals, mined on common GPUs instead of specialty ASICs";
|
|
||||||
homepage = "https://bitcoingold.org/";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = [ maintainers.mmahut ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -19,15 +19,15 @@ with lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "digibyte";
|
pname = "digibyte";
|
||||||
version = "7.17.2";
|
version = "7.17.3";
|
||||||
|
|
||||||
name = pname + toString (optional (!withGui) "d") + "-" + version;
|
name = pname + toString (optional (!withGui) "d") + "-" + version;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = "digibyte-core";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "04czj7mx3wpbx4832npk686p9pg5zb6qwlcvnmvqf31hm5qylbxj";
|
sha256 = "zPwnC2qd28fA1saG4nysPlKU1nnXhfuSG3DpCY6T+kM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
, protobuf
|
, protobuf
|
||||||
, hexdump
|
, hexdump
|
||||||
, zeromq
|
, zeromq
|
||||||
|
, gmp
|
||||||
, withGui
|
, withGui
|
||||||
, qtbase ? null
|
, qtbase ? null
|
||||||
, qttools ? null
|
, qttools ? null
|
||||||
|
@ -19,15 +20,15 @@ with lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "vertcoin";
|
pname = "vertcoin";
|
||||||
version = "0.15.0.1";
|
version = "0.18.0";
|
||||||
|
|
||||||
name = pname + toString (optional (!withGui) "d") + "-" + version;
|
name = pname + toString (optional (!withGui) "d") + "-" + version;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname + "-project";
|
owner = pname + "-project";
|
||||||
repo = pname + "-core";
|
repo = pname + "-core";
|
||||||
rev = version;
|
rev = "2bd6dba7a822400581d5a6014afd671fb7e61f36";
|
||||||
sha256 = "09q7qicw52gv225hq6wlpsf4zr4hjc8miyim5cygi5nxxrlw7kd3";
|
sha256 = "ua9xXA+UQHGVpCZL0srX58DDUgpfNa+AAIKsxZbhvMk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -44,6 +45,7 @@ stdenv.mkDerivation rec {
|
||||||
libevent
|
libevent
|
||||||
db4
|
db4
|
||||||
zeromq
|
zeromq
|
||||||
|
gmp
|
||||||
] ++ optionals withGui [
|
] ++ optionals withGui [
|
||||||
qtbase
|
qtbase
|
||||||
qttools
|
qttools
|
||||||
|
|
|
@ -132,6 +132,12 @@ mapAliases ({
|
||||||
bird2 = bird; # Added 2022-02-21
|
bird2 = bird; # Added 2022-02-21
|
||||||
bird6 = throw "bird6 was dropped. Use bird instead, which has support for both ipv4/ipv6"; # Added 2022-02-21
|
bird6 = throw "bird6 was dropped. Use bird instead, which has support for both ipv4/ipv6"; # Added 2022-02-21
|
||||||
bitbucket-cli = throw "bitbucket-cli has been removed: abandoned by upstream"; # Added 2022-03-21
|
bitbucket-cli = throw "bitbucket-cli has been removed: abandoned by upstream"; # Added 2022-03-21
|
||||||
|
bitcoin-classic = throw "bitcoin-classic has been removed: the Bitcoin Classic project has closed down, https://bitcoinclassic.com/news/closing.html"; # Added 2022-11-24
|
||||||
|
bitcoind-classic = throw "bitcoind-classic has been removed: the Bitcoin Classic project has closed down, https://bitcoinclassic.com/news/closing.html"; # Added 2022-11-24
|
||||||
|
bitcoin-gold = throw "bitcoin-gold has been removed since it's unnmaintained and will stop building with Qt > 5.14"; # Added 2022-11-24
|
||||||
|
bitcoind-gold = throw "bitcoin-gold has been removed since it's unnmaintained: https://github.com/BTCGPU/BTCGPU/graphs/code-frequency"; # Added 2022-11-24
|
||||||
|
digibyte = throw "digibyte has been removed since it's unnmaintained and will stop building with Qt > 5.14"; # Added 2022-11-24
|
||||||
|
digibyted = throw "digibyted has been removed since it's unnmaintained: https://github.com/digibyte/digibyte/graphs/code-frequency"; # Added 2022-11-24
|
||||||
bitsnbots = throw "bitsnbots has been removed because it was broken and upstream missing"; # Added 2021-08-22
|
bitsnbots = throw "bitsnbots has been removed because it was broken and upstream missing"; # Added 2021-08-22
|
||||||
blastem = throw "blastem has been removed from nixpkgs as it would still require python2"; # Added 2022-01-01
|
blastem = throw "blastem has been removed from nixpkgs as it would still require python2"; # Added 2022-01-01
|
||||||
bluezFull = bluez; # Added 2019-12-03
|
bluezFull = bluez; # Added 2019-12-03
|
||||||
|
|
|
@ -33559,7 +33559,7 @@ with pkgs;
|
||||||
withGui = false;
|
withGui = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
bitcoin-unlimited = libsForQt514.callPackage ../applications/blockchains/bitcoin-unlimited {
|
bitcoin-unlimited = libsForQt5.callPackage ../applications/blockchains/bitcoin-unlimited {
|
||||||
inherit (darwin.apple_sdk.frameworks) Foundation ApplicationServices AppKit;
|
inherit (darwin.apple_sdk.frameworks) Foundation ApplicationServices AppKit;
|
||||||
withGui = true;
|
withGui = true;
|
||||||
};
|
};
|
||||||
|
@ -33568,24 +33568,6 @@ with pkgs;
|
||||||
withGui = false;
|
withGui = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
bitcoin-classic = libsForQt514.callPackage ../applications/blockchains/bitcoin-classic {
|
|
||||||
boost = boost165;
|
|
||||||
withGui = true;
|
|
||||||
};
|
|
||||||
bitcoind-classic = callPackage ../applications/blockchains/bitcoin-classic {
|
|
||||||
boost = boost165;
|
|
||||||
withGui = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
bitcoin-gold = libsForQt514.callPackage ../applications/blockchains/bitcoin-gold {
|
|
||||||
boost = boost165;
|
|
||||||
withGui = true;
|
|
||||||
};
|
|
||||||
bitcoind-gold = callPackage ../applications/blockchains/bitcoin-gold {
|
|
||||||
boost = boost165;
|
|
||||||
withGui = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
btcpayserver = callPackage ../applications/blockchains/btcpayserver { };
|
btcpayserver = callPackage ../applications/blockchains/btcpayserver { };
|
||||||
|
|
||||||
charge-lnd = callPackage ../applications/blockchains/charge-lnd { };
|
charge-lnd = callPackage ../applications/blockchains/charge-lnd { };
|
||||||
|
@ -33595,15 +33577,6 @@ with pkgs;
|
||||||
dcrd = callPackage ../applications/blockchains/dcrd { };
|
dcrd = callPackage ../applications/blockchains/dcrd { };
|
||||||
dcrwallet = callPackage ../applications/blockchains/dcrwallet { };
|
dcrwallet = callPackage ../applications/blockchains/dcrwallet { };
|
||||||
|
|
||||||
digibyte = libsForQt514.callPackage ../applications/blockchains/digibyte {
|
|
||||||
withGui = true;
|
|
||||||
boost = boost170;
|
|
||||||
};
|
|
||||||
digibyted = callPackage ../applications/blockchains/digibyte {
|
|
||||||
withGui = false;
|
|
||||||
boost = boost170;
|
|
||||||
};
|
|
||||||
|
|
||||||
dogecoin = libsForQt5.callPackage ../applications/blockchains/dogecoin {
|
dogecoin = libsForQt5.callPackage ../applications/blockchains/dogecoin {
|
||||||
boost = boost165;
|
boost = boost165;
|
||||||
withGui = true;
|
withGui = true;
|
||||||
|
@ -33748,7 +33721,7 @@ with pkgs;
|
||||||
|
|
||||||
tessera = callPackage ../applications/blockchains/tessera { };
|
tessera = callPackage ../applications/blockchains/tessera { };
|
||||||
|
|
||||||
vertcoin = libsForQt514.callPackage ../applications/blockchains/vertcoin {
|
vertcoin = libsForQt5.callPackage ../applications/blockchains/vertcoin {
|
||||||
boost = boost165;
|
boost = boost165;
|
||||||
withGui = true;
|
withGui = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue